@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&display=swap');

body {
    background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
    font-family: 'Outfit', sans-serif;
    color: #2c3e50;
    min-height: 100vh;
}

/* Glassmorphism Card */
.card {
    border: none;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.card-header {
    background: linear-gradient(135deg, #0d6efd 0%, #0043a8 100%);
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    padding: 20px;
    border-bottom: none;
    display: flex;
    align-items: center;
    gap: 12px;
}

.card-header h3 {
    margin: 0;
    font-weight: 700;
    font-size: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Inputs and Forms */
.form-control, .form-select {
    height: 52px;
    border-radius: 10px;
    border: 1px solid #dee2e6;
    background: #f8f9fa;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.02);
}

.form-control:focus, .form-select:focus {
    border-color: #0d6efd;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.15);
}

textarea.form-control {
    height: auto;
    resize: none;
}

label {
    font-weight: 600;
    margin-bottom: 8px;
    color: #495057;
}

.required {
    color: #dc3545;
    margin-left: 4px;
}

/* Checkboxes */
.website-checkbox-wrapper {
    cursor: pointer;
}

.website {
    transform: scale(1.4);
    margin-right: 12px;
    cursor: pointer;
    accent-color: #0d6efd;
}

/* Buttons */
.btn {
    border-radius: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, #0d6efd 0%, #0043a8 100%);
    border: none;
    height: 52px;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #0043a8 0%, #0d6efd 100%);
    box-shadow: 0 6px 20px rgba(13, 110, 253, 0.3);
    transform: translateY(-2px);
}

.btn-success {
    background: linear-gradient(135deg, #20c997 0%, #198754 100%);
    border: none;
    height: 60px;
    font-size: 20px;
}

.btn-success:hover {
    background: linear-gradient(135deg, #198754 0%, #20c997 100%);
    box-shadow: 0 8px 25px rgba(25, 135, 84, 0.4);
    transform: translateY(-2px);
}

.btn-secondary {
    height: 52px;
    border: none;
    background: #6c757d;
}

.btn-secondary:hover {
    background: #5c636a;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 20px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.animated-fade-in-up {
    animation: fadeInUp 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.delay-1 { animation-delay: 0.1s; opacity: 0; }
.delay-2 { animation-delay: 0.2s; opacity: 0; }
.delay-3 { animation-delay: 0.3s; opacity: 0; }
