/* Shared portal sign-in / forgot / reset pages (matches Login.razor look) */
.portal-auth-page {
    min-height: 100vh;
    display: flex;
    background: linear-gradient(135deg, #0a0a0f 0%, #0d1117 50%, #0a0a0f 100%);
    align-items: center;
    justify-content: center;
    padding: 40px 24px;
}

.portal-auth-panel {
    width: 100%;
    max-width: 420px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    padding: 48px 40px;
    backdrop-filter: blur(20px);
}

.portal-auth-title {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 8px;
    text-align: center;
}

.portal-auth-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0 0 32px;
    text-align: center;
}

.portal-auth-field {
    margin-bottom: 20px;
}

.portal-auth-label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
}

.portal-auth-input-wrap {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
}

.portal-auth-input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 16px;
    font-size: 15px;
    color: #ffffff;
    outline: none;
}

.portal-auth-button {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 8px;
}

.portal-auth-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.portal-auth-link {
    font-size: 13px;
    color: #64B5F6;
    text-decoration: none;
}

.portal-auth-link:hover {
    text-decoration: underline;
}

.portal-auth-banner {
    padding: 14px 16px;
    border-radius: 12px;
    margin-bottom: 24px;
    font-size: 13px;
}

.portal-auth-banner.error {
    background: rgba(244, 67, 54, 0.1);
    border: 1px solid rgba(244, 67, 54, 0.2);
    color: #ef5350;
}

.portal-auth-banner.info {
    background: rgba(33, 150, 243, 0.12);
    border: 1px solid rgba(33, 150, 243, 0.25);
    color: #90CAF9;
}

.portal-auth-footer {
    text-align: center;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}
