/*
 * This CSS file contains styles specifically for the login page.
 * It defines the layout, appearance, and responsive behavior of the login form,
 * input fields, buttons, and related elements to ensure a user-friendly and visually appealing login experience.
 * Use this file to customize the look and feel of the authentication interface.
 */

.login-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 3rem 0;
}

.login-form, .reset-password-form {
    background: var(--Theme-Body-Background);
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    width: 600px;
    /* border-radius: 16px; */
    box-sizing: border-box;
}

.login-form {
    padding: 32px;
    gap: 32px;
    justify-content: center;
    align-content: center;
}

.reset-password-form {
    padding: 24px;
    gap: 24px;
}

.reset-password-form .regular {
    color: var(--Surfaces-on-surface-variant)
}

.reset-password-form button {
    font-size: 16px;
}

.login-form > form {
    width: 100%;
    margin-bottom: 0;
}

.login-form > .heading-text {
    text-align: center;
}


.login-form > .heading-text img {
    width: 200px;
    height: auto;
}

.footer-background-image {
    position: relative;
    bottom: calc(6px - 4%);
    background-image: url('/img/login/background.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 255px;
}

.toggle-password {
  position: absolute;
  top: 60%;
  right: 15px;
  cursor: pointer;
  font-size: 18px;
  color: var(--neutral-medium);
  user-select: none;
}


h2 {
    color: var(--Primary-primary);
    font-weight:  700;
}
/** MOBILE **/
@media (max-width: 768px) {
    .login-form, .reset-password-form {
        width: 95%;
    }

    .login-container {
        height: 91vh;
    }
}