/* Google Fonts - Poppins */
/* @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
} */
#connection-form.container{
    display: flex;
    align-items: center;
    justify-content: center;

    column-gap: 30px;
}
#connection-form .form{
  
    max-width: 430px;
    width: 100%;
    padding: 30px;
    border-radius: 6px;
}
#connection-form .form.signup{
    display: none;
    opacity: 0;
    pointer-events: none;
}
#connection-form.forms.show-signup .form.signup{
    display: block;
    opacity: 1;
    pointer-events: auto;
}
#connection-form.forms.show-signup .form.login{
    display: none;
    opacity: 0;
    pointer-events: none;
}
#connection-form header{
    font-size: 28px;
    font-weight: 600;
    color: #232836;
    text-align: center;
}
#connection-form form{
    margin-top: 30px;
}
#connection-form .form .field{
    position: relative;
    height: 50px;
    width: 100%;
    margin-top: 20px;
    border-radius: 6px;
}
#connection-form .field input,
#connection-form .field button{
    height: 100%;
    width: 100%;
    border: none;
    font-size: 16px;
    font-weight: 400;
    border-radius: 6px;
}
#connection-form .field input{
    outline: none;
    padding: 0 15px;
    border: 1px solid#CACACA;
}
#connection-form .field input:focus{
    border-bottom-width: 2px;
}

#connection-form .field.facebook {
    color: white;
}
#connection-form .eye-icon{
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    font-size: 18px;
    color: #8b8b8b;
    cursor: pointer;
    padding: 5px;
}
#connection-form .field button{
    color: #fff;
    background-color: #0171d3;
    transition: all 0.3s ease;
    cursor: pointer;
}
#connection-form .field button:hover{
    background-color: #016dcb;
}
#connection-form .form-link{
    text-align: center;
    margin-top: 10px;
}
#connection-form .form-link span,
#connection-form .form-link a{
    font-size: 14px;
    font-weight: 400;
    color: #232836;
}
#connection-form .form a{
    color: #0171d3;
    text-decoration: none;
}
#connection-form .form-content a:hover{
    text-decoration: underline;
}
#connection-form .line{
    position: relative;
    height: 1px;
    width: 100%;
    margin: 36px 0;
    background-color: #d4d4d4;
}
#connection-form .line::before{
    content: 'OU';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--e-global-color-764183d);
    color: #8b8b8b;
    padding: 0 15px;
}
#connection-form .media-options a{
    display: flex;
    align-items: center;
    justify-content: center;
}
#connection-form a.facebook{
    color: #fff;
    background-color: #4267b2;
}
#connection-form a.facebook .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;
}
#connection-form .facebook-icon,
#connection-form img.google-img{
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
}
#connection-form img.google-img{
    height: 20px;
    width: 20px;
    object-fit: cover;
}
#connection-form a.google{
    border: 1px solid #CACACA;
}
#connection-form a.google span{
    font-weight: 500;
    opacity: 0.6;
    color: #232836;
}

@media screen and (max-width: 400px) {
    #connection-form .form{
        padding: 20px 10px;
    }
    
}