﻿:root {
    --stripe-purple: #635bff;
    --stripe-purple-light: #7c3aed;
    --stripe-gray-50: #f8fafc;
    --stripe-gray-800: #1e293b;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, var(--stripe-gray-50), rgba(99, 91, 255, 0.05));
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.login-card {
    background: white;
    border-radius: 1.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    max-width: 450px;
    width: 100%;
    padding: 2.5rem;
    border: 1px solid #e2e8f0;
}

.login-header {
    text-align: center;
    margin-bottom: 2rem;
}

    .login-header h2 {
        font-weight: 700;
        color: var(--stripe-gray-800);
    }

.form-control {
    border-radius: 0.75rem;
    padding: 0.75rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--stripe-purple), var(--stripe-purple-light));
    border: none;
    padding: 0.75rem;
    font-weight: 600;
    border-radius: 0.75rem;
    box-shadow: 0 4px 12px rgba(99, 91, 255, 0.3);
    transition: all 0.3s ease;
}

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(99, 91, 255, 0.4);
    }

.text-danger {
    font-size: 0.9rem;
}

.form-text a {
    text-decoration: none;
    color: var(--stripe-purple);
    font-weight: 500;
}

.brand-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

    .brand-logo svg {
        width: 42px;
        height: 42px;
        margin-right: 10px;
    }

.brand-text {
    font-family: 'Georgia', serif;
    font-size: 1.2rem;
    font-weight: 600;
    background: linear-gradient(135deg, var(--stripe-gray-800), var(--stripe-purple));
    -webkit-background-clip: text;
    
}

label {
    font-weight: 500;
}

.checkbox label {
    margin-left: 0.5rem;
}

.corner-decor {
    position: fixed;
    z-index: -1;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle at center, var(--stripe-purple-light), transparent 70%);
    opacity: 0.15;
    pointer-events: none;
}

.top-left {
    top: 0;
    left: 0;
    border-top-left-radius: 100%;
}

.bottom-right {
    bottom: 0;
    right: 0;
    border-bottom-right-radius: 100%;
}