body{
    background: #fff;
    height: 100vh;
}
.form-container {
    height: 550px;
    width: 100%;
    border-radius: 0px;
    display: flex;
    align-items: center;
    background-color: white;
    overflow: hidden;
    position: relative;
}

.login-container,.signup-container {
    width: 50%;
    padding: 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
    transition: all 500ms ease;

}

.signup-container{
   transform:scale(0);
}

.title{
    font-size: 20px;
    font-weight: 500;
    text-align: center;
    margin-top: 25px;
}

.desc {
    font-size: 12px;
}

.input-container {
    margin-top: 10px;
    width: 100%;
    height: 40px;
    border-radius: 5px;
    border: 2px solid #d6e0eb;
    display: flex;
    align-items: center;
}

input{
    height: 100%;
    border: none;
    margin-left: 0px;
    outline: none;
    /* font-family: "Roboto", sans-serif; */
    padding: 10px;
    width: 100%;
}

.account-controls {
    display: flex;
    align-items: start;
    justify-content: space-between;
    flex-direction: column;
    gap: 10px;
}

.account-controls>a {
    text-decoration: none;
    color: #5293aa;
    font-size: 12px;
}

.account-controls>button,
.account-controls a.btn {
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border: none;
    background: #31342d;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 500ms ease;
}

.other-login-text {
    text-align: center;
    font-size: 12px;
    color: #64656a;
}

.placeholder-banner {
    width: 50%;
    height: 100%;
    position:absolute;
    right:0;
    transition: all 500ms ease;
    z-index:4;
    background: #f3ffe4;
}

.social-logins {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.social-login {
    height: 40px;
    aspect-ratio: 1/1;
    border: 2px solid #bfc0c9;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap:5px;
    cursor: pointer;
    transition:transform 500ms ease;
    &:hover{
        transform:scale(1.1);
    }
}

.signup-text{
    margin-top: 5px;
    font-size: 12px;
}

#signup-form-toggler,#login-form-toggler{
    cursor: pointer;
    text-decoration: none;
    color:#046586;
    &:hover{
    border-bottom:1px solid;
    }
}

.banner {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 500ms ease;
    padding-left: 20px;
}

::placeholder{
font-size: 12px;
}

@media (max-width: 757.98px) {
body{
overflow: hidden;
}
.placeholder-banner{
 display: none;
}
.login-container, .signup-container{
    width: 100%;
    padding: 40px 0px 0px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: start;
    gap: 20px;
}
.form-container {
    height: 100%;
    display: inline;
}
.card {
    box-shadow: none;
    border: 0px;
}
.title{
    opacity: 0;
}
.input-container {
    height: 55px;
}
.signup-text{
    text-align: center;
    display: none;
}
.account-controls>button, .account-controls a.btn {
    height: 50px;
    }
}
.login_h3{
    font-size: 35px;
    background: #31342d;
    color: #fff;
    padding: 15px;
}
