/* ========================================
   LANDING PAGE SPECIFIC STYLES
   ======================================== */

.landing-content {
    padding: 0 20px 40px;
}

/* Welcome Box */
.welcome-box {
    background: linear-gradient(135deg, #e8f5e8 0%, #f0f8f0 100%);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.welcome-title {
    font-size: 2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.login-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #4c6d70 0%, #72a9ad 100%);
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(76, 109, 112, 0.3);
    margin-bottom: 1rem;
}

.login-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 109, 112, 0.4);
    color: white;
    text-decoration: none;
}

.guest-text {
    color: #6c757d;
    font-size: 0.9rem;
    font-style: italic;
    margin-top: 1rem;
    margin-bottom: 0;
}

.logged-in-text {
    color: #28a745;
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
}

.logged-in-text i {
    margin-right: 8px;
}

/* Questions Form */
.questions-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.question-box {
    background: linear-gradient(135deg, #e8f0ff 0%, #f0f5ff 100%);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.question-label {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
    text-align: center;
}

.question-input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #dee2e6;
    border-radius: 8px;
    font-size: 1.2rem;
    text-align: center;
    font-weight: 600;
    color: #2c3e50;
    transition: all 0.3s ease;
    background: white;
}

.question-input:focus {
    outline: none;
    border-color: #4c6d70;
    box-shadow: 0 0 0 3px rgba(76, 109, 112, 0.1);
}

.input-note {
    text-align: center;
    font-size: 0.85rem;
    color: #6c757d;
    margin-top: 0.5rem;
    margin-bottom: 0;
    font-style: italic;
}

/* Submit Button */
.submit-button {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 1rem auto 0;
    width: 100%;
    max-width: 300px;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
}

.submit-button:active {
    transform: translateY(0);
}

.submit-button:disabled {
    opacity: 0.8;
    cursor: not-allowed;
    transform: none;
}

.submit-button:disabled:hover {
    transform: none;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

/* Responsive Design */
@media (min-width: 400px) {
    .welcome-title {
        font-size: 2.5rem;
    }

    .question-label {
        font-size: 1.2rem;
    }

    .question-input {
        font-size: 1.4rem;
    }
}
