/* 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;
}
.container{
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
     background: url("../images/farouk-mechedal-iWmfPbKmxEQ-unsplash.jpg");
    background-size: cover;
    column-gap: 30px;
}

.container2{
    height: 150vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
     background: url("../images/farouk-mechedal-iWmfPbKmxEQ-unsplash.jpg");
    background-size: cover;
    column-gap: 30px;
}
.form{
    position: absolute;
    max-width: 600px;
    width: 70%;
    padding: 30px;
    border-radius: 5px;
    background: #FFF;
    height: 600px;
    
}
 
 
header{
    font-size: 26px;
    font-weight: 600;
    color: #232836;
    text-align: center;
    margin-top: 10px
}
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;
}
.eye-icon{
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    font-size: 18px;
    color: #8b8b8b;
    cursor: pointer;
    padding: 5px;
}
.field button{
    color: #fff;
    background-color:  black;
    transition: all 0.3s ease;
    cursor: pointer;
}
.field button:hover{
    background-color: blue;
}
.form-link{
    text-align: left;
    margin-top: 30px;
    
}
.form-link span,
.form-link a{
    font-size: 14px;
    font-weight: 400;
    color: #232836;
}
.form a{
    color: #0171d3;
    text-decoration: none;
}
.form-content a:hover{
    text-decoration: underline;
}
 
}
.media-options a{
    display: flex;
    align-items: center;
    justify-content: center;
}
 

@media screen and (max-width: 600px) {
    .form{
        padding: 20px 10px;
    }
    
}