/* Authentication & Guest Layout Styles */

body {
    background: radial-gradient(circle at top right, #eff6ff, #f8fafc);
    min-height: 100vh;
}

.auth-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: var(--ag-border-radius);
    box-shadow: var(--ag-shadow-lg);
    width: 100%;
    max-width: 440px;
    overflow: hidden;
    margin: 5rem auto;
}

.form-control {
    border-radius: 0.75rem;
    padding: 0.75rem 1rem;
    border: 1px solid #e2e8f0;
    background-color: #fcfdfe;
    transition: all 0.2s ease;
}

.form-control:focus {
    border-color: var(--ag-primary);
    box-shadow: 0 0 0 4px rgba(0, 149, 215, 0.1);
}

.btn-primary {
    background-color: var(--ag-primary);
    border: none;
    border-radius: 0.75rem;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    transition: all 0.2s ease;
    color: #fff;
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 15px -3px rgba(0, 149, 215, 0.3);
    color: #fff;
}

.auth-logo {
    width: 64px;
    height: 64px;
    background: var(--ag-primary);
    color: white;
    border-radius: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 20px rgba(0, 149, 215, 0.2);
}
