/*
:root {
    --foxb2c-primary: #0066cc;
    --foxb2c-secondary: #333333;
    --foxb2c-accent: #f8f9fa;
    --foxb2c-border: #dee2e6;
    --foxb2c-success: #28a745;
    --foxb2c-danger: #dc3545;
}
*/

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.checkout-container {
    max-width: 1200px;
    margin: 0 auto;
}

.page-title {
    text-align: center;
    margin-bottom: 2rem;
}

.page-title h1 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.page-title p {
    color: #666;
    font-size: 1.1rem;
}

.page-title h1,
.page-title p{
    display: none;
}

.login-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    padding: 2.5rem;
    margin-bottom: 2rem;
    height: 100%;
    border-top: 5px solid var(--foxb2c-primary);
}

.login-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--foxb2c-secondary);
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--foxb2c-border);
}

.form-label {
    font-weight: 500;
    color: var(--txt-cor-texto);
    margin-bottom: 0.5rem;
}

.form-control {
    border: 2px solid var(--foxb2c-border);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--foxb2c-primary);
    box-shadow: 0 0 0 0.2rem rgba(0, 102, 204, 0.15);
}

.btn-primary {
    background: var(--foxb2c-primary);
    border: none;
    border-radius: 8px;
    padding: 0.875rem 2rem;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-primary:hover {
    background: #0052a3;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
}

.btn-link {
    color: var(--foxb2c-primary);
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    margin-top: 1rem;
}

.btn-link:hover {
    text-decoration: underline;
    color: #0052a3;
}

.grecaptcha-badge {
    visibility: hidden;
}

.recaptcha-terms {
    font-size: 0.85rem;
    color: #666;
    margin-top: 1rem;
}

.recaptcha-terms a {
    color: var(--foxb2c-primary);
}

/* Responsive */
@media (max-width: 768px) {
    .login-card {
        padding: 1.5rem;
    }
    
    .page-title h1 {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    body {
        padding-top: 0;
    }
    
    .login-card {
        padding: 1.25rem;
    }
    
    .login-card h3 {
        font-size: 1.25rem;
    }
}