/**
 * Carbon3 Amelia Booking Gate - Frontend Styles
 *
 * @package Carbon3_Amelia_Booking_Gate
 * @since   1.0.0
 */

/* Container */
.c3-gate-container {
    padding: 60px 20px;
    max-width: 800px;
    margin: 0 auto;
    min-height: 450px;
}

/* Success Message */
.c3-gate-success {
    background: #d4edda;
    color: #155724;
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 20px;
    border: 1px solid #c3e6cb;
}

.c3-gate-success strong {
    font-weight: 600;
}

/* Error Message */
.c3-gate-error {
    background: #f8d7da;
    color: #721c24;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    border: 1px solid #f5c6cb;
}

/* Form Wrapper */
.c3-gate-form-wrap {
    background: #fff;
    padding: 30px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.c3-gate-form-wrap h2 {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 1.5em;
    color: #333;
}

/* Form Input */
.c3-gate-input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-bottom: 15px;
    box-sizing: border-box;
    font-size: 16px;
    transition: border-color 0.2s ease;
}

.c3-gate-input:focus {
    outline: none;
    border-color: #0073aa;
    box-shadow: 0 0 0 2px rgba(0, 115, 170, 0.2);
}

.c3-gate-input::placeholder {
    color: #999;
}

/* Submit Button */
.c3-gate-button {
    background: #0073aa;
    color: #fff;
    padding: 12px 25px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    width: 100%;
    font-size: 16px;
    transition: background-color 0.2s ease;
}

.c3-gate-button:hover {
    background: #005a87;
}

.c3-gate-button:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 115, 170, 0.4);
}

.c3-gate-button:active {
    background: #004a6e;
}

/* Responsive */
@media (max-width: 600px) {
    .c3-gate-container {
        padding: 30px 15px;
    }

    .c3-gate-form-wrap {
        padding: 20px;
    }

    .c3-gate-form-wrap h2 {
        font-size: 1.25em;
    }
}
