/**
 * Ulumify Login Clean Style
 * Persona: Public / Auth
 */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --login-primary: #0d9488; /* Teal-600 */
    --login-primary-dark: #0f766e;
    --login-bg: #f8fafc;
    --login-text-dark: #0f172a;
    --login-text-muted: #64748b;
    --login-border: #e2e8f0;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--login-bg);
    margin: 0;
    height: 100vh;
}

#auth {
    height: 100vh;
    display: flex;
}

#auth-left {
    background: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 4rem;
    z-index: 2;
}

.auth-card {
    max-width: 420px;
    width: 100%;
}

.auth-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--login-text-dark);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.auth-subtitle {
    color: var(--login-text-muted);
    font-size: 0.95rem;
    margin-bottom: 2.5rem;
}

/* Form Styles */
.form-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--login-text-dark);
    margin-bottom: 0.5rem;
}

.custom-input {
    border-radius: 10px;
    border: 1px solid var(--login-border);
    padding: 0.75rem 1rem !important;
    font-size: 0.95rem;
    background-color: #ffffff;
    transition: all 0.2s ease;
    box-shadow: none;
    height: auto !important;
}

.custom-input:focus {
    border-color: var(--login-primary);
    box-shadow: 0 0 0 4px rgba(13, 148, 136, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

/* Button */
.custom-btn {
    width: 100%;
    border-radius: 10px;
    background-color: var(--login-primary);
    border: none;
    color: white;
    font-weight: 600;
    padding: 0.85rem;
    font-size: 1rem;
    transition: all 0.2s ease;
    margin-top: 1rem;
}

.custom-btn:hover {
    background-color: var(--login-primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(13, 148, 136, 0.2);
}

.forgot-link {
    font-size: 0.85rem;
    color: var(--login-primary);
    text-decoration: none;
    font-weight: 500;
}

.forgot-link:hover {
    text-decoration: underline;
}

/* Right Side (Visual) */
#auth-right {
    flex: 1;
    background-color: #f0fdfa; /* Soft Teal */
    background-image: 
        radial-gradient(at 0% 0%, rgba(13, 148, 136, 0.05) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(13, 148, 136, 0.05) 0px, transparent 50%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.brand-showcase {
    text-align: center;
    max-width: 80%;
}

.brand-logo-large {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--login-primary);
    margin-bottom: 1rem;
    letter-spacing: -0.04em;
}

.brand-tagline {
    font-size: 1.25rem;
    color: var(--login-text-muted);
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 991px) {
    #auth-right {
        display: none;
    }
    #auth-left {
        width: 100%;
        padding: 2rem;
    }
}
