.container{
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 30px;
}
.form{
    position: absolute;
    max-width: 430px;
    width: 100%;
    padding: 30px;
    border-radius: 6px;
    background: #FFF;
    margin-top: 100px;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);

}

.form.signup{
    opacity: 0;
    pointer-events: none;
    margin-top: 250px;
}
.forms.show-signup .form.signup{
    opacity: 1;
    pointer-events: auto;
    margin-top: 250px;
}
.forms.show-signup .form.login{
    opacity: 0;
    pointer-events: none;
}

h3{
    font-size: 28px;
    font-weight: 600;
    color: #232836;
    text-align: center;
}

form{
    margin-top: 30px;
}
.form .field{
    position: relative;
    height: 50px;
    width: 100%;
    margin-top: 20px;
    border-radius: 6px;
}

.field input,
.field button{
    height: 100%;
    width: 100%;
    border: none;
    font-size: 16px;
    font-weight: 400;
    border-radius: 6px;
}
.field input{
    outline: none;
    padding: 0 15px;
    border: 1px solid#CACACA;
}
.field input:focus{
    border-bottom-width: 2px;
}

.fa-solid.fa-eye-slash{
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    font-size: 18px;
    color: #8b8b8b;
    cursor: pointer;
    padding: 5px;
}
.field button{
    color: #fff;
    background-color: #FF6969;
    transition: all 0.3s ease;
    cursor: pointer;
}
.field button:hover{
    background-color: #FF6969;
}

.form-link{
    text-align: center;
    margin-top: 10px;
}
.form-link span,
.form-link a{
    font-size: 14px;
    font-weight: 400;
    color: #232836;
}
.form a{
    color: #FF6969;
    text-decoration: none;
}
.form-content a:hover{
    text-decoration: underline;
}

.line{
    position: relative;
    height: 1px;
    width: 100%;
    margin: 36px 0;
    background-color: #d4d4d4;
}
.line::before{
    content: 'Or';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #FFF;
    color: #8b8b8b;
    padding: 0 15px;
}

.media-options a{
    display: flex;
    align-items: center;
    justify-content: center;
}
a.facebook{
    color: #fff;
    background-color: #FF6969;
}
a.facebook .icon{
    height: 28px;
    width: 28px;
    color: #0171d3;
    font-size: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
}

#facebook-icon,
img.google-img{
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
}
img.google-img{
    height: 20px;
    width: 20px;
    object-fit: cover;
}
a.google{
    border: 1px solid #CACACA;
}

a.google span{
    font-weight: 500;
    opacity: 0.6;
    color: #232836;
}

.form-group {
    margin-bottom: 15px;
    position: relative;
    margin-top: 15px;
  }

label {
    display: block;
    font-size: 16px;
    margin-bottom: 7px;
  }

.form-group input,
.form-group select {
    height: 45px;
    padding: 10px;
    width: 100%;
    font-size: 15px;
    outline: none;
    background: #fff;
    border-radius: 3px;
    border: 1px solid #CACACA;
  }


 .form-group input:focus,
 .form-group select:focus {
  border-color: #CACACA;
}


@media screen and (max-width: 820px) {
    /* .form{
        padding: 20px 10px;
        margin-top: -350px;
    } */

    /* .form.signup{
        margin-top: -200px;
    } */
    
}

@media screen and (min-width: 820px) and (max-width: 1024px) {
    /* .form{
        padding: 20px 10px;
        margin-top: -450px;
    }

    .form.signup{
        margin-top: -350px;
    } */
    
}

@media screen and (min-width: 1024px) and (max-width: 1090px) {
    /* .form{
        padding: 20px 10px;
        margin-top: 0px;
    } */

    /* .form.signup{
        margin-top: 100px;
    } */
    
}



@media screen and (min-width: 420px) and (max-width: 820px) {
    /* .form{
    margin-top: -50px;
} */
    /* .form.signup{
    margin-top: 100px;
    } */
}

@media screen and (max-width: 420px) {
    /* .form{
    margin-top: -50px;
} */
    /* .form.signup{
    margin-top: 200px;
    } */
}


/* @media screen and (max-width: 400px) {
    .form{
    margin-top: -50px;
}
    .form.signup{
    margin-top: 200px;
    }
} */