@import url('/css/brand.css');

body {
    font-family: var(--font-body);
}

.password-container {
    position: relative;
}

.fa-eye {
    position: absolute;
    top: 14px;
    right: 8px;
    cursor: pointer;
    color: lightgray;
}
#anhBgLogin {
    width: 100%;
    height: 675px;
    background: url(../images/AnhBgLogin.jpg);
    background-size: cover;
    display: flex;
    align-items: center;
}

#formLogin {
    background-color: rgba(255, 255, 255, 0.96);
    width: 100%;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    padding: 28px 28px 28px 12px;
    box-shadow: var(--hpk-shadow);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

#sloganLogin {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: white;
    text-shadow: 0 6px 20px rgba(0,0,0,0.35);
}

#topForm {
    flex-basis: 20%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 52.5px;
}

#topForm a:first-child {
    color: var(--color--secondary);
    border-bottom: 1px solid var(--color--secondary);
}

#topForm a:nth-last-child(1) {
    color: black;
}

#bodyForm {
    flex-basis: 80%;
    padding-left: 25px;
    display: flex;
}

button.btn.btn-dark {
    background: linear-gradient(135deg, var(--hpk-coral), var(--hpk-coral-deep));
    border-color: transparent;
    width: 160px;
    border-radius: 14px;
    font-weight: 700;
    box-shadow: 0 10px 22px rgba(255, 77, 46, 0.28);
}

button.btn.btn-dark:hover {
    background: linear-gradient(135deg, var(--hpk-coral-deep), #c42d14);
    border-color: transparent;
    filter: brightness(1.05);
}

#forgotPassword {
    color: var(--hpk-coral);
    float: right;
    font-weight: 600;
}

#forgotPassword:hover {
    color: var(--hpk-coral-deep);
}

.floatLeft {
    float: left;
}

.submit-button {
    margin-top: 10px;
    background: linear-gradient(135deg, var(--hpk-coral), var(--hpk-coral-deep)) !important;
    color: white;
    font-weight: bold;
    border: none;
    border-radius: 14px;
}


.form-group{
    padding-top: 10px;
}