/* Form page specific styles */

.container {
    max-width: 800px;
}

.btn {
    width: 100%;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.form-group input {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.main-content {
    padding: 40px;
}

.security-notice {
    background: #e8f5e8;
    border: 2px solid #4CAF50;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 25px;
    font-size: 14px;
}

.security-notice strong {
    color: #2e7d32;
}

.alert {
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 25px;
}

.alert-danger {
    background: #ffebee;
    border: 2px solid #f44336;
    color: #c62828;
}

/* Loading overlay styles */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    backdrop-filter: blur(2px);
}

.loading-overlay.show {
    display: flex;
    animation: fadeIn 0.1s ease-in;
}

.loading-content {
    text-align: center;
    color: white;
}

.loading-mascot {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    margin: 0 auto 20px;
    animation: spin 1.5s linear infinite;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.loading-text {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.loading-subtext {
    font-size: 14px;
    opacity: 0.8;
}

/* Audit mode toggle styles */
.audit-mode-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    display: block;
}

.toggle-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toggle-container input[type="radio"] {
    display: none;
}

.toggle-option {
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
    display: block;
}

.toggle-option:hover {
    border-color: #4facfe;
    background: #f8f9ff;
}

.toggle-container input[type="radio"]:checked + .toggle-option {
    border-color: #4facfe;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f4ff 100%);
    box-shadow: 0 2px 8px rgba(79, 172, 254, 0.2);
}

.toggle-title {
    font-weight: 600;
    font-size: 16px;
    color: #333;
    display: block;
    margin-bottom: 5px;
}

.toggle-desc {
    font-size: 14px;
    color: #666;
    display: block;
}

/* FAQ Styling */
.faq-item {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.faq-item:last-of-type {
    border-bottom: none;
}

.faq-item h4 {
    color: #00a79b;
    margin-bottom: 10px;
    font-size: 1.1em;
}

.faq-item p {
    line-height: 1.6;
    color: #555;
} 