﻿/* Kasbyar Auth Pages — Shared Global Styles */

.auth-wrap {
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 24px;
    box-sizing: border-box;
    background: radial-gradient(circle at 30% 20%, #1E3A5F 0%, #0F1F3D 55%, #0A1729 100%);
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    opacity: 0.3;
    pointer-events: none;
}

.orb-1 {
    width: 300px;
    height: 300px;
    background: #C9A227;
    top: -70px;
    right: -50px;
}

.orb-2 {
    width: 260px;
    height: 260px;
    background: #1E3A5F;
    bottom: -60px;
    left: -60px;
}

.auth-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 400px;
    animation: authFadeInUp 0.6s ease-out;
}

.auth-logo-full {
    width: 240px;
    filter: drop-shadow(0 8px 24px rgba(0,0,0,0.35));
}

.auth-logo {
    width: 64px;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 16px rgba(0,0,0,0.3));
}

.auth-spinner {
    margin-top: 32px;
}

.auth-card {
    width: 100%;
    background: rgba(255, 255, 255, 0.97);
    border-radius: 24px;
    padding: 36px 28px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.35);
    box-sizing: border-box;
}

.auth-eyebrow {
    display: block;
    color: #A6841E;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
}

.auth-title {
    color: #0F1F3D;
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 8px 0;
}

.auth-subtitle {
    color: #6B7280;
    font-size: 14px;
    margin: 0 0 28px 0;
    line-height: 1.6;
}

.auth-button {
    height: 54px !important;
    font-size: 16px !important;
}

    .auth-button:hover {
        box-shadow: 0 12px 30px rgba(201, 162, 39, 0.4) !important;
    }

@keyframes authFadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
