@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
*{
    margin:0;
    padding: 0;
    font-family: 'Poppins' , sans-serif;
    text-decoration: none;
}
body{
    min-height:100vh;
    display:flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    padding-inline:10px;
}
.container{
    background:white;
    box-shadow:0 4px 8px rgba(0, 0, 0,0.5);
    width:600px;
    padding: 15px;
    border-radius: 5px;
    animation:animate 0.5s ease;
}
@keyframes animate{
    0%{
        scale:0.8;
        opacity:0.5;
    }
    100%{
        scale:1;
        opacity:1;
    }
}
.container  .form .heading{
    font-size:25px;
    font-weight:600;
    text-align:center;
    margin-bottom:15px;
}
label{
    display:block;
    font-size:18px;
    text-transform: capitalize;
}
.email input , .password input , .name input{
    height:40px;
    width:100%;
    padding-left:10px;
    box-sizing: border-box;
    border:none;
    outline: none;
    border:1px solid grey;
    margin:10px 0;
    font-size:16px;
}
.login button , .signup button{
    margin-top:20px;
}
.login button , .signup button{
    border:none;
    background:blueviolet;
    width:100%;
    height:40px;
    border-radius:2px;
    color:white;
    font-size:16px;
    cursor:pointer;
    transition:all 0.2s ease;
}
.signup button a , .login button a{
    color:inherit;
}

.login button:hover , .signup button:hover{
    background:blue;
}
@media screen and (min-width:1200px) and (max-width:2000px){
    .container{
        width:50%;
    }
}
@media screen and (min-width:2000px){
    .container{
        width:1000px;
    }
}