/*
 * SHAKES PRO LEAD FORM STYLES
 */

/* Main container for the form */
.shakes-form-container {
    background-color: #f7f7f7;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #e2e2e2;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Header section with title and subtitle */
.shakes-form-header {
    text-align: center;
    margin-bottom: 20px;
}

.shakes-form-title {
    font-size: 24px;
    font-weight: 600;
}

.shakes-form-subtitle {
    color: #718096;
}

/* General styles for each form field row */
.shakes-form-row {
    margin-bottom: 15px;
}

/* Label styles (visually hidden but accessible) */
.shakes-form-label {
    font-weight: 600;
}

/* Input and Select field styles */
.shakes-lead-form input[type="text"],
.shakes-lead-form input[type="tel"],
.shakes-lead-form select {
    width: 100%;
    border: 1px solid #cbd5e0;
    border-radius: 6px;
    background-color: #fff;
    box-sizing: border-box;
    transition: border-color 0.2s, box-shadow 0.2s;
}

/* Focus styles for input fields */
.shakes-lead-form input:focus,
.shakes-lead-form select:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(66, 153, 225, 0.2);
}

/* Submit Button Styles */
.shakes-form-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px; /* Space between icon and text */
    width: 100%;
    padding: 14px;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    border-radius: 6px;
    border: none;
    transition: background-color 0.2s ease-in-out;
    background-color: var(--cta);
}

.shakes-form-button:hover {
    background-color: var(--cta-hover);
}

/* Footer text (T&C) */
.shakes-form-footer {
    text-align: center;
    font-size: 12px;
    color: #718096;
    margin-top: 15px;
}

/* Success Message Styles */
.shakes-success-message {
    padding: 20px;
    background-color: #f0fff4;
    border: 1px solid #38a169;
    color: #2f855a;
    border-radius: 8px;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
}

/* Error Message Styles */
.shakes-error-message {
    padding: 12px;
    background-color: #fff5f5;
    border: 1px solid #e53e3e;
    color: #c53030;
    border-radius: 6px;
    text-align: center;
    font-size: 14px;
    margin-bottom: 15px;
}