﻿/**
 * Arise Solutions - Modern Auth Forms (Login / Signup / Password Recovery)
 * Dark Glassmorphic Theme
 */

.arise-auth-wrapper {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px 60px;
    box-sizing: border-box;
}

.arise-auth-card {
    width: 100%;
    max-width: 480px;
    background: rgba(15, 23, 42, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 36px 30px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(56, 189, 248, 0.05);
    box-sizing: border-box;
}

.arise-auth-header {
    text-align: center;
    margin-bottom: 28px;
}

.arise-auth-header h1 {
    font-size: 1.65rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 8px;
    letter-spacing: -0.02em;
}

.arise-auth-header p {
    font-size: 0.9rem;
    color: #94a3b8;
    margin: 0;
}

.arise-auth-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.arise-form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: inherit;
}

.arise-form-label {
    font-size: 0.86rem;
    font-weight: 600;
    color: #cbd5e1;
}

.arise-form-input {
    width: 100%;
    height: 44px;
    padding: 0 14px;
    background: rgba(4, 6, 10, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    color: #ffffff;
    font-size: 0.92rem;
    font-family: inherit;
    outline: none;
    box-sizing: border-box;
    transition: all 0.2s ease;
}

.arise-form-input:focus {
    border-color: #38bdf8;
    background: rgba(4, 6, 10, 0.9);
    box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.15);
}

.arise-form-input::placeholder {
    color: #64748b;
    font-size: 0.86rem;
}

.arise-form-hint {
    font-size: 0.76rem;
    color: #64748b;
    margin-top: 2px;
}

.arise-auth-btn {
    width: 100%;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, #38bdf8 0%, #0284c7 100%);
    color: #07090e;
    font-size: 0.95rem;
    font-weight: 800;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(56, 189, 248, 0.25);
    transition: all 0.2s ease;
    margin-top: 6px;
}

.arise-auth-btn:hover:not(:disabled) {
    transform: translateY(-1px);
    box-shadow: 0 12px 28px rgba(56, 189, 248, 0.4);
    color: #ffffff;
}

.arise-auth-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.arise-auth-footer-links {
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: center;
    font-size: 0.86rem;
    color: #94a3b8;
}

.arise-auth-footer-links a {
    color: #38bdf8;
    text-decoration: none;
    font-weight: 600;
}

.arise-auth-footer-links a:hover {
    text-decoration: underline;
}

.arise-captcha-container {
    display: flex;
    justify-content: center;
    margin: 8px 0;
}

.arise-auth-alert {
    padding: 12px 14px;
    border-radius: 8px;
    font-size: 0.86rem;
    line-height: 1.5;
    margin-bottom: 16px;
    text-align: center;
}

.arise-auth-alert.is-error {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.35);
    color: #fca5a5;
}

.arise-auth-alert.is-info {
    background: rgba(56, 189, 248, 0.12);
    border: 1px solid rgba(56, 189, 248, 0.3);
    color: #7dd3fc;
}

.arise-auth-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.84rem;
    color: #94a3b8;
    cursor: pointer;
    margin: 4px 0;
}

.arise-auth-checkbox input {
    margin-top: 3px;
    accent-color: #38bdf8;
    cursor: pointer;
}

.arise-auth-checkbox a {
    color: #38bdf8;
    text-decoration: underline;
}
