/* Corporate Light Theme for Generated Pages */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --bg-color: #f4f6f8;
    --card-bg: #ffffff;
    --text-primary: #2c3e50;
    --text-secondary: #5f7d95;
    --accent-color: #0066cc;
    /* Professional Blue */
    --accent-hover: #004d99;
    --border-color: #e1e4e8;
    --input-bg: #ffffff;
    --success-color: #28a745;
    --error-color: #dc3545;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.05), 0 4px 6px rgba(0, 0, 0, 0.02);
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-primary);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    width: 100%;
    max-width: 1000px;
    /* Increased for double panel */
    padding: 20px;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    /* Stack on mobile */
    justify-content: center;
    align-items: flex-start;
}

/* Card Style */
.glass-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    animation: fadeInUp 0.8s ease-out;
    flex: 1;
    /* Equal width */
    min-width: 300px;
}

h1,
h2,
h3 {
    margin-bottom: 20px;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}

h1 i,
h2 i {
    color: var(--accent-color);
    margin-right: 8px;
}

/* Forms */
.form-group {
    margin-bottom: 20px;
    text-align: left;
}

label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9em;
    color: var(--text-secondary);
    font-weight: 500;
}

input,
select,
textarea {
    width: 100%;
    padding: 12px 15px;
    background: var(--input-bg);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    font-size: 1em;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    box-sizing: border-box;
    /* Important for padding */
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

textarea {
    resize: vertical;
    min-height: 100px;
}

/* Buttons */
.btn {
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 6px;
    font-size: 1em;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s ease;
    width: 100%;
    box-shadow: var(--shadow-sm);
}

.btn:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn:active {
    transform: translateY(0);
}

.btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

/* Hidden elements */
.hidden {
    display: none !important;
}

/* Success Message */
.success-message {
    margin-top: 20px;
    padding: 15px;
    background: #e6ffed;
    border: 1px solid #b7ebc5;
    border-radius: 6px;
    color: #155724;
    font-weight: 500;
    font-size: 0.95em;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    animation: fadeIn 0.5s ease-out;
}

.success-message.show {
    opacity: 1;
    transform: translateY(0);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}