.login_sect {
    background-image: url("/assets/images/pexels-athena-2582932.webp");
    background-position: center;
    background-size: cover;
    min-height: 100vh;
}

.black_overlay {
    background-color: rgba(0, 0, 0, 0.3);
}

.login_sect h1,
.login_sect h2 {
    color: white;
    margin: 20px auto;
}

.login_sect h1 {
    color: #FFF;
    text-shadow: 0px 4px 0px rgba(56, 53, 60, 0.67);
    font-size: 3rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.login_cont {
    background-color: white;
    max-width: 500px;
    margin: auto;
    margin-top: 4rem;
    border-radius: 10px;
    padding: 25px 10px;
}

.form_cont {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: auto;
}

.form_cont h3 {
    font-size: 2rem;
    font-weight: 500;
}

.hr_line {
    background: #EAEBF0;
    width: 100%;
    height: 1px;
}



.form_note {
    color: white;
    margin-top: 20px;
    font-size: 1.2rem;
}

/* ---------------------------------------------------------------- */
.form {
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background-color: #ffffff;
    padding: 30px;
    width: 100%;
    border-radius: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}


::placeholder {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.form button {
    align-self: flex-end;
}

.flex-column {
    text-align: left;
}

.flex-column > label {
    color: #151717;
    font-weight: 600;
}

.inputForm {
    border: 1.5px solid #ecedec;
    border-radius: 10px;
    height: 50px;
    display: flex;
    align-items: center;
    padding-left: 10px;
    transition: 0.2s ease-in-out;
}

.input {
    margin-left: 10px;
    border-radius: 10px;
    border: none;
    width: 85%;
    height: 100%;
}

.input:focus {
    outline: none;
}

.inputForm:focus-within {
    border: 1.5px solid #2d79f3;
}

.flex-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
}

.flex-row > div > label {
    font-size: 14px;
    color: black;
    font-weight: 400;
}

.link {
    font-size: 14px;
    margin-left: 5px;
    color: #2d79f3;
    font-weight: 600;
    cursor: pointer;
}

.button-submit {
    margin: 20px 0 10px 0;
    background-color: #437EF7;
    border: none;
    color: white;
    font-size: 15px;
    font-weight: 500;
    border-radius: 10px;
    height: 50px;
    width: 100%;
    cursor: pointer;
}

.button-submit:hover {
    background-color: #252727;
}

.p {
    text-align: center;
    color: black;
    font-size: 14px;
    margin: 5px 0;
}

.btn {
    margin-top: 10px;
    width: 100%;
    height: 50px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    gap: 10px;
    border: 1px solid #ededef;
    background-color: white;
    cursor: pointer;
    transition: 0.2s ease-in-out;
}

.btn:hover {
    border: 1px solid #2d79f3;
}

.input_icon {
    font-size: 1.45rem;
    color: #5d5e60;
}

/* responsive */

@media screen and (max-width: 500px) {
    .login_sect h1 {
        font-size: 2rem;
    }

    .login_sect h2 {
        font-size: 1.2rem;
    }

    .form {
        padding: 15px;
    }
}