/* 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;
}

body, html {
    height: 100%;
    width: 100%;
}

.container {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    /*height: 65vh;*/
    padding-bottom: 100px;
    width: 100%;
    background-color: var(--background-setting);
    padding-right: .75rem;
    padding-left: .75rem;
}

.form {
    max-width: 430px;
    width: 100%;
    padding: 30px;
    border-radius: 6px;
    background: var(--company-light-green);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

header {
    font-size: 28px;
    font-weight: 600;
    color: #232836;
    text-align: center;
    margin-bottom: 20px;
    padding: 10px;
}

.input-field, .button-field {
    margin-bottom: 20px;
    position: relative;
}

.input, .password {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.input:focus, .password:focus {
    border-color: #4A90E2;
}

.eye-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 20px;
    color: #8b8b8b;
}

.button-field button {
    padding: 10px;
    border-radius: 5px;
    background-color: #4A90E2;
    color: white;
    font-size: 16px;
    cursor: pointer;
}

.button-field button:hover {
    background-color: #357ABD;
}

.form-link, .form-link a {
    text-align: center;
    color: midnightblue;
    text-decoration: none;
    font-weight: bolder;
}

.form-link a:hover {
    text-decoration: underline;
}

.password-requirements p, .password-requirements ul, .password-requirements li {
    margin-bottom: 5px;
}

.password-requirements ul {
    list-style-type: none;
}

/*.password-requirements li:before {*/
/*    content: "✔️";*/
/*    margin-right: 5px;*/
/*}*/


.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: var(--company-dark-green);
    transition: all 0.3s ease;
    cursor: pointer;
}
.field button:hover{
    background-color: var(--background-setting);
    color: black;
}

.form a{
    color: #0171d3;
    text-decoration: none;
    font-weight: bolder;
}
.form-content a:hover{
    text-decoration: underline;
}
.line{
    position: relative;
    height: 1px;
    width: 100%;
    margin: 36px 0;
    background-color: #d4d4d4;
}
.line::before{
    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;
}


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

}
