@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

.signup-container,.login-container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #F6F7EF;
}
.create-account-header{
    font-family: Inter;
font-weight: 500;
font-size: 18px;
line-height: 100%;
letter-spacing: 0%;
text-align: center;
color: #433E3F;
margin-bottom: 20px;
}
.signup-form, .login-form{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1;

}
.login-form{
    width: 22%;
}
.google-signup-btn{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 50px;
    background-color: transparent;
    border-radius: 5px;
    border: 1px solid var(--Neutrals-Neutrals300, #B5B3B3);
    font-family: Inter;
    padding: 15px 10px;
    cursor: pointer;
}
.google-signup-btn svg{
    margin-right: 14px;
}
form{
    width: 100%;
}
.signup-email, .signup-password, .signup-name{
    display:flex; flex-direction:column;width:95%;border-radius:5px;background-color:#E8E8D9;
    padding: 10px;
    margin-bottom: 15px;
    position: relative;

}
.signup-email label, .signup-password label, .signup-name label{
    font-family: Inter;
font-weight: 400;
font-size: 10px;
line-height: 100%;
letter-spacing: 0%;

}
.signup-email input, .signup-password input, .signup-name input{
    width: 100%;
    background-color: transparent;
    border: none;
    outline: none;
    font-family: Inter;
    font-weight: 500;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: left;
    color: #433E3F;
    padding: 0;
    padding-top: 5px;

}
.signup-email input::placeholder, .signup-password input::placeholder, .signup-name input::placeholder{
    color: #433E3F;
    opacity: 0.5;
}
.signup-email input:focus, .signup-password input:focus, .signup-name input:focus{
    outline: none;
    box-shadow: none;
    border: none;
}
.signup-email input:focus-visible, .signup-password input:focus-visible, .signup-name input:focus-visible{
    outline: none;
    box-shadow: none;
    border: none;
}
.signup-email input:active, .signup-password input:active, .signup-name input:active{
    outline: none;
    box-shadow: none;
    border: none;
}
.signup-create-account{
    width: 100%;
gap: 10px;
border-radius: 6px;
padding-top: 10px;
padding-right: 20px;
padding-bottom: 10px;
padding-left: 20px;
background-color: #5449F8;
color: white;
border: none;
outline: none;
}
.signup-create-account:hover{
    background-color: #2414ff;
}
.terms{
    width: 80%;
    font-family: Inter;
font-weight: 400;
font-size: 10px;
line-height: 100%;
letter-spacing: 0%;
text-align: center;
color: #5A5555;
margin-top: 10px;
}

.already{
    font-family: Inter;
font-weight: 400;
font-size: 12px;
line-height: 100%;
letter-spacing: 0%;
text-align: center;
color: #433E3F;
margin-top: 20px;
}
.already a{
    color: #1106A6;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
}

.signup_clip1{
    position: absolute;
    top: 0;
    left: 0;
}
.signup_clip2{
    position: absolute;
    bottom: 0;
    right: 0;
}

.tick-icon{
    display: none;
    position: absolute;
    right: 10px;
    top: 20px;
}

.forgot-password{
    font-family: Inter;
font-weight: 500;
font-size: 10px;
line-height: 100%;
letter-spacing: 0%;
text-align: center;
color: #1106A6;
margin-bottom: 20px;
}
#hide, #show{
    position: absolute;
    right: 10px;
    top: 20px;
    cursor: pointer;
}
.resend-email{
    width: 30%;
}

@media (max-width: 500px){
    .signup_clip1 {
        position: absolute;
        top: -98px;
        left: 0;
        width: 76%;
    }
    .signup_clip2 {
        position: absolute;
        bottom: 0px;
        right: 0px;
        width: 81%;
    }
    .login-form {
        width: 85%;
    }
    .resend-email {
        width: 70%;
    }
}
@media (width:1024px){
    .login-form {
        width: 35%;
    }
}
@media (min-width: 768px) and (max-width: 821px){
    .login-form {
        width: 45%;
    }
}
