*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}
  
body {
    background: #e6f3ff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container{
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    display: flex;
    gap:30px;
    width: 400px;
    height: 500px;
    background-color:#006064;

}

.form-box-signup{
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 400px;
    height: 500px;
}

.form-box-signup .form-header{
    text-align: center;
    font-size: 30px;
    font-weight: bold;
    color: white;
    padding: 20px 0;
}

.form-body {
    display: flex; 
    flex-direction: column; 
    justify-content: space-around;
    gap:20px;
    padding: 0 30px;
}

.form-body > input{
    padding: 15px 15px;
    border: none;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    outline: none;
}

.btn{
    padding: 15px 15px;
    border-radius: 15px;
}

.form-body .btn:hover{
    background-color: orange;
}

.switch-form{
    height: 200px;
    width: 400px;
    text-align: center;
    font-size: 30px ;
    font-weight: bold;  
    color: gray;
    margin-top: 15px;
    background-color: white;
    border-radius: 50%;
}

.form-box-login{
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 400px;
    height: 500px;
    display: none;
    
}

.form-box-login .form-header{
    text-align: center;
    font-size: 30px;
    font-weight: bold;
    color: black;
    padding: 20px 0;

}

.form-box-login .form-body > a{
    text-decoration: none; 
    text-align: left; 
    font-size: 16px; 
    color: grey
}

.form-box-login .form-body .btn{
    background-color: #006064;
    border-radius: 15px;
    color: white;
    font-size: 16px;
}

.form-box-login .form-body .btn:hover{
    background-color: orange;
    color: black;
}

.form-box-login .form-body {
    padding-top: 20px;
}

@media screen and (max-width: 768px) {
.container {

width: auto;
height: auto;}
}
