main, .blue-overlay {
    margin: 0;
    padding: 0;
    background-color: var(--primary);
    min-height: 100vh;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
}

.container {
    background-color: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 100%;
    padding: 32px;
    box-sizing: border-box;
}

.text-center {
    text-align: center;
    margin-bottom: 14px;
}

h2 {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary); /* gray-900 */
    margin-bottom: 8px;
}

.subtitle {
    font-size: 14px;
    color: var(--primary); /* gray-600 */
}

form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.options a {
    color: var(--primary);
    text-decoration: none;
}

.options a:hover {
    text-decoration: underline;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 6px;
}

button {
    width: 100%;
    background-color: var(--primary);
    color: white;
    font-weight: 600;
    padding: 10px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
}

button:hover {
    background-color: #c5973c;  
}

.login {
    text-align: center;
    font-size: 14px;
    color: var(--primary);
    margin-top: 16px;
}

.login a {
    color: var(--accent);
    text-decoration: none;
}

.login a:hover {
    text-decoration: underline;
}

#error {
    background-color: red !important;
    color: white;
    font-size: 14px;
    font-weight: 600;
    margin: 0;
    text-align: center;
    margin-bottom: 14px;
}

.blue-overlay {
    background-color: var(--primary);
    overflow: hidden;
    position: relative;
}

.blue-overlay > * {
    z-index: 1;
}

.blue-overlay::before {
    background-image: url('/assets/images/overlay.png');
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 0;
    overflow: hidden;
}