/* Page-specific styles for owi_login.html */
/* Requires: owi_auth_shared.css */

.login-heading { margin-bottom: 24px; }
.login-subtext { margin-bottom: 32px; }

.messages-container { margin-bottom: 24px; }

.info-box {
    width: 519px;
    max-width: 100%;
    background: #fff8e1;
    border: 1px solid #ffe082;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 14px;
    color: #795548;
    text-align: center;
    margin-bottom: 24px;
}

.resend-link {
    background: none;
    border: none;
    color: #AD1457;
    cursor: pointer;
    font-size: 13px;
    padding: 0;
    text-decoration: underline;
    font-family: 'Inter', sans-serif;
}

#owi_login_form {
    gap: 32px;
}

.form-footer {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
}

.forgot-password {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    color: #6C757D;
    text-decoration: none;
    transition: color 0.3s ease;
}

.forgot-password:hover { color: #AD1457; }

/* Login submit has no extra top margin (gap on the form handles spacing) */
.submit-button { margin-top: 0; }

.signup-link { margin-top: 24px; }

@media (max-width: 768px) {
    #owi_login_form { gap: 24px; }
}