/* Authentication Pages Styles */

.auth-page {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(135deg, #1e5a96 0%, #17a2b8 100%);
    padding: var(--spacing-md);
}

.auth-container {
    width: 100%;
    max-width: 450px;
}

.auth-card {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid #e9ecef;
}

.auth-header {
    text-align: center;
    margin-bottom: 30px;
}

.auth-title {
    font-size: 32px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 8px;
}

.auth-subtitle {
    color: #6c757d;
    margin: 0;
    font-size: 14px;
}

.auth-form {
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    font-size: 16px;
    background-color: #f8f9fa;
    color: #000000;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: #5b5bff;
    background-color: #ffffff;
}

.form-help {
    font-size: 14px;
    color: #6c757d;
    margin-top: 4px;
    display: block;
}

.btn {
    display: inline-block;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
}

.btn-primary {
    background-color: #2e7cb8;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #2563a0;
    color: #ffffff;
}

.btn-block {
    width: 100%;
    display: block;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-lg);
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.form-options .checkbox {
    margin: 0;
}

.form-options .link {
    color: var(--primary);
    font-size: var(--text-sm);
    white-space: nowrap;
}

.form-options .link:hover {
    text-decoration: underline;
}

.auth-footer {
    text-align: center;
    color: #6c757d;
    margin-top: 20px;
}

.auth-footer .link {
    font-weight: 600;
    color: #2e7cb8;
    text-decoration: none;
}

.auth-footer .link:hover {
    text-decoration: underline;
}

.link {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition-fast);
}

.link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.alert {
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.alert-error {
    background-color: #fee2e2;
    color: #dc2626;
    border-left: 4px solid #dc2626;
}

.alert-success {
    background-color: #dcfce7;
    color: #166534;
    border-left: 4px solid #22c55e;
}

.alert-icon {
    font-size: 16px;
}

@media (max-width: 480px) {
    .auth-card {
        padding: 20px;
    }

    .auth-title {
        font-size: 28px;
    }

    .form-options {
        flex-direction: column;
        align-items: flex-start;
    }

    .form-options .link {
        width: 100%;
        text-align: left;
    }
}
