#authentification {
    width: 100dvw;
    height: 100dvh;
}

.login-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
    padding: 48px 32px;
    height: 92vh;
}

.login-card {
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05),
        0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    padding: 33px 33px 49px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    width: 100%;
    max-width: 448px;
}

.login-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.avatar-placeholder {
    width: 64px;
    height: 64px;
    background-color: #d1d5db;
    border-radius: 9999px;
    margin-bottom: 16px; /* 243 - (163 + 64) */
}

.brand-name {
    background-image: url("../images/logo 01.jpg");
    height: 1rem;
    width: 1rem;
    border: 2 px solid var(--primary-dark);
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    margin: 0 0 8px 0; /* 283 - (243 + 32) */
}

.subheading {
    color: #4b5563;
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    margin: 0;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    color: #374151;
    font-family: "Inter", sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
}

.form-input {
    background-color: #ffffff;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    padding: 12px 13px;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    color: #111827;
    line-height: 1.2; /* Approx from 19.36px */
}

.form-input::placeholder {
    color: #6b7280;
}

.submit-button {
    background-color: #0b2751;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    padding: 9px 17px;
    color: #ffffff;
    font-family: "Inter", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    cursor: pointer;
    width: 100%;
}

@media (max-width: 480px) {
    .login-section {
        padding: 24px 16px;
    }
    .login-card {
        padding: 24px;
    }
}

/* CSS for section section:footer */
.site-footer {
    background-color: #ffffff;
    border-top: 1px solid #e5e7eb;
    padding: 25px 32px 24px;
    width: 100%;
}

.footer-container {
    max-width: 1216px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.copyright-text {
    color: #6b7280;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    margin: 0;
}
