/* 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("../assets/img/onur-binay-_yC2htzMYnI-unsplash.jpg");
    background-size: cover;
    column-gap: 30px;
}

.container2{
    height: 150vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
     background: url("../assets/img/onur-binay-_yC2htzMYnI-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:  blue;
    transition: all 0.3s ease;
    cursor: pointer;
}
.field button:hover{
    background-color: black;
}
.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;
    }
    
}




body {
    
   flex-direction: column;
   justify-content: center;
   align-items: center;
   height: 100vh;
   background: ;
   font-family: 'Open Sans', sans-serif;
   color: #fff;
}
select {
   -webkit-appearance:none;
   -moz-appearance:none;
   -ms-appearance:none;
   appearance:none;
   outline:0;
   box-shadow:none;
   border:0!important;
   background: #5c6664;
   background-image: none;
   flex: 1;
   padding: 0 .5em;
   color:#fff;
   cursor:pointer;
   font-size: 1em;
   font-family: 'Open Sans', sans-serif;
}
select::-ms-expand {
   display: none;
}
.select {
   position: relative;
   display: flex;
   width: 20em;
   height: 3em;
   line-height: 3;
   background: #5c6664;
   overflow: hidden;
   border-radius: .25em;
}
.select::after {
   content: '\25BC';
   position: absolute;
   top: 0;
   right: 0;
   padding: 0 1em;
   background: blue;
   cursor:pointer;
   pointer-events:none;
   transition:.25s all ease;
}
.select:hover::after {
   color: #23b499;
}