* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #f39c12;
    --orange: #e67e22;
    --success: #2ecc71;
    --danger: #e74c3c;
    --primary-blue: #1b4a6e;
    --primary-light-blue: #2c7da0;
}

body {
    font-family: 'Quicksand', system-ui, sans-serif;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 40%, #0f0c1f 100%);
    min-height: 100vh;
    color: #f0ede8;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

h2 {
    background: linear-gradient(135deg, #fbe9c3, #f5bc70);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.spiritual-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -3;
    overflow: hidden;
}

.cosmic-orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(243, 156, 18, 0.2), rgba(230, 126, 34, 0.08), transparent 80%);
    filter: blur(50px);
    animation: floatOrb 25s infinite alternate;
}

.form-control::placeholder {
    color: #8a9198;
}

.orb-1 {
    width: 550px;
    height: 550px;
    top: -200px;
    left: -150px;
}

.orb-2 {
    width: 700px;
    height: 700px;
    bottom: -300px;
    right: -200px;
    background: radial-gradient(circle, rgba(44, 125, 160, 0.2), rgba(100, 80, 150, 0.1));
}

.mandala-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 800' opacity='0.05'%3E%3Cdefs%3E%3Cpattern id='mandala' x='0' y='0' width='120' height='120' patternUnits='userSpaceOnUse'%3E%3Ccircle cx='60' cy='60' r='28' fill='none' stroke='%23f39c12' stroke-width='0.6'/%3E%3Ccircle cx='60' cy='60' r='18' fill='none' stroke='%23e67e22' stroke-width='0.4'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='100%25' height='100%25' fill='url(%23mandala)'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: -2;
}

@keyframes floatOrb {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0.4;
    }

    100% {
        transform: translate(60px, 40px) scale(1.08);
        opacity: 0.7;
    }
}

.glass-card {
    background: rgba(20, 25, 45, 0.75);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(243, 156, 18, 0.35);
    border-radius: 2rem;
    transition: all 0.3s ease;
}

.glass-card:hover {
    border-color: rgba(243, 156, 18, 0.6);
    box-shadow: 0 0 30px rgba(243, 156, 18, 0.1);
}

.btn-gold {
    background: linear-gradient(105deg, #c28b1f, #e67e22);
    border: none;
    border-radius: 60px;
    padding: 0.7rem 1.8rem;
    font-weight: 600;
    color: #1e1a0c;
    transition: all 0.2s;
    width: 100%;
}

.btn-gold:hover {
    transform: scale(1.02);
    background: linear-gradient(105deg, #e67e22, #f39c12);
    box-shadow: 0 5px 20px rgba(243, 156, 18, 0.4);
}

.form-control {
    background: rgba(15, 20, 35, 0.9);
    border: 1px solid rgba(243, 156, 18, 0.4);
    color: #f0e6d2;
    border-radius: 1rem !important;
    padding: 0.75rem 1rem;
}

.form-control:focus {
    background: rgba(25, 30, 50, 0.95);
    border-color: #f39c12;
    box-shadow: 0 0 0 3px rgba(243, 156, 18, 0.3);
    color: #fff;
}

.form-label {
    font-weight: 600;
    color: #f5d78c;
    margin-bottom: 0.5rem;
}

h1,
h2,
h3 {
    font-family: 'Cormorant Garamond', serif;
}

.text-gold {
    color: #f39c12;
}

.login-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(243, 156, 18, 0.2), rgba(230, 126, 34, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    border: 2px solid rgba(243, 156, 18, 0.4);
}

.role-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 30px;
    font-size: 0.7rem;
    font-weight: 600;
    margin: 0.2rem;
}

.demo-credentials {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 1rem;
    padding: 0.8rem;
    margin-top: 1rem;
    font-size: 0.75rem;
}

.password-toggle {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #f39c12;
    background: transparent;
    border: none;
}

.input-group {
    position: relative;
}

.alert-custom {
    background: rgba(231, 76, 60, 0.2);
    border: 1px solid #e74c3c;
    border-radius: 1rem;
    padding: 0.75rem;
    font-size: 0.85rem;
}