/* Body Styles */
body {
    margin-left: 3.75rem; /* Sidebar collapsed width */
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: var(--light-blue);
    color: var(--dark-green);
    transition: margin-left 0.3s ease;
}

body.sidebar--open {
    margin-left: 12.5rem; /* Sidebar expanded width */
}

/* General Navbar Styles */
.navbar {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 1rem; /* 16px */
    background-color: var(--steel-blue);
}

.navbar .btn-introduction {
    margin-right: 1rem; /* 16px */
    padding: 0.5rem 1rem; /* 8px 16px */
    font-size: 1rem; /* 16px */
}

.nav-form {
    margin-left: 0.5rem; /* 8px */
}

.nav-form .login-btn,
.nav-form .register-btn {
    padding: 0.5rem 1rem; /* 8px 16px */
    font-size: 1rem; /* 16px */
    border: none;
    border-radius: 0.25rem; /* 4px */
    cursor: pointer;
    background-color: var(--cadet-blue);
    color: var(--background-color);
    transition: background-color 0.3s ease;
}

.nav-form .login-btn:hover,
.nav-form .register-btn:hover {
    background-color: var(--steel-blue);
}

/* Forgot Password Section Styling */
.forgot-password-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    background-color: var(--light-blue);
}

.forgot-password-container {
    background-color: var(--pale-turquoise);
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 0.125rem 0.3125rem rgba(0, 0, 0, 0.1);
    max-width: 30rem; /* 480px */
    width: 100%;
    text-align: center;
}

.message {
    color: red;
    margin-bottom: 1rem; /* 16px */
    font-weight: bold;
}

h1 {
    font-size: 1.75rem; /* 28px */
    color: var(--dark-green);
    margin-bottom: 1rem; /* 16px */
}

.forgot-password-form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.form-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    margin-bottom: 1rem; /* 16px */
}

label {
    font-size: 1rem; /* 16px */
    color: var(--steel-blue);
    margin-bottom: 0.5rem; /* 8px */
}

.email-input {
    width: 100%;
    padding: 0.75rem; /* 12px */
    font-size: 1rem; /* 16px */
    border: 0.0625rem solid var(--border-color); /* 1px solid */
    border-radius: 0.25rem; /* 4px */
    box-sizing: border-box;
}

.submit-btn {
    width: 100%;
    padding: 0.75rem; /* 12px */
    font-size: 1rem; /* 16px */
    background-color: var(--steel-blue);
    color: var(--background-color);
    border: none;
    border-radius: 0.25rem; /* 4px */
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: var(--cadet-blue);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .forgot-password-container {
        padding: 1.5rem; /* 24px */
    }

    h1 {
        font-size: 1.5rem; /* 24px */
    }
}
