/* ===================================
   WUFOO CUSTOM FORM STYLESHEET
   Saturn Electric Style
   Simple red button with white background
   =================================== */

/* HTML Background */
html {
    background-image: none !important;
    background-color: #ffffff !important;
}

html.embed {
    background-color: #ffffff !important;
}

/* Logo Area */
#logo {
    background-image: none;
    background-color: transparent;
}

/* Form Container - White Background */
#container {
    background: #ffffff !important;
    background-color: #ffffff !important;
    border: none;
    box-shadow: none;
    padding: 30px;
    box-sizing: border-box;
    max-width: 100%;
}

html.embed #container {
    background: #ffffff !important;
    background-color: #ffffff !important;
}

/* Additional overrides for validation state */
body #container,
body.html #container,
html body #container {
    background: #ffffff !important;
    background-color: #ffffff !important;
}

/* Ensure all form elements use border-box */
.wufoo * {
    box-sizing: border-box;
}

.wufoo ul {
    max-width: 100%;
}

.wufoo li {
    max-width: 100%;
}

/* Form Header/Title */
.wufoo .info h2 {
    font-size: 160%;
    font-family: inherit;
    color: #333333;
    font-weight: 600;
}

.wufoo .info div {
    font-size: 95%;
    font-family: inherit;
    color: #666666;
}

.wufoo .info {
    border-bottom: 1px solid #e0e0e0;
    background: transparent;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

/* Section Headers */
.wufoo .section h3 {
    font-size: 110%;
    font-family: inherit;
    background: transparent;
    color: #333333;
    font-weight: 600;
}

.wufoo .section div {
    font-size: 85%;
    font-family: inherit;
    color: #666666;
}

/* Field Labels */
.wufoo label.desc, .wufoo legend.desc {
    font-size: 95%;
    font-family: inherit;
    color: #333333 !important;
    font-weight: 600;
}

.likert caption {
    color: #333333 !important;
}

.wufoo li div, .wufoo li div label, .wufoo li span label {
    font-family: inherit;
    color: #666666;
}

/* Required field asterisk */
.wufoo .req {
    color: #ee2e24;
}

/* Input Fields & Textareas - White with Border */
.wufoo input.text, .wufoo textarea.textarea {
    background: #ffffff;
    border: 1px solid #cccccc;
    border-radius: 4px;
    padding: 12px 16px;
    font-size: 100%;
    font-family: inherit;
    color: #333333;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

/* Select Dropdowns */
.wufoo select.select {
    background: #ffffff;
    border: 1px solid #cccccc;
    border-radius: 4px;
    padding: 12px 16px;
    font-size: 100%;
    font-family: inherit;
    color: #333333;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

/* Input Focus State - Red Accent */
.wufoo .focused {
    background: #ffffff;
    border-color: #ee2e24;
    box-shadow: 0 0 0 2px rgba(238, 46, 36, 0.1);
}

/* Remove yellow focus overlay on list items */
.wufoo li.focused,
form li.focused {
    background-color: transparent !important;
}

/* Radio/Checkbox Labels */
.wufoo label.choice {
    font-size: 100%;
    font-family: inherit;
    color: #333333;
}

/* Instructions/Help Text */
.wufoo .instruct {
    font-size: 80%;
    font-family: inherit;
    color: #888888;
    background-color: transparent;
    border: none;
}

.wufoo .instruct small {
    color: #888888;
}

/* Submit Button - Simple Red Rectangle */
.wufoo input.btTxt {
    background: #ee2e24;
    color: #ffffff;
    border: none;
    border-radius: 0;
    padding: 14px 32px;
    font-size: 100%;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Submit Button Hover - Darker Red */
.wufoo input.btTxt:hover {
    background: #d32820;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(238, 46, 36, 0.3);
}

/* Submit Button Active */
.wufoo input.btTxt:active {
    transform: translateY(0);
}

/* Error Messages */
.wufoo .error {
    background: #ffebee;
    color: #c62828;
    border-radius: 4px;
    padding: 8px 12px;
    border-left: 3px solid #ee2e24;
}

/* Success Message */
.wufoo .success {
    background: #e8f5e9;
    color: #2e7d32;
    border-radius: 4px;
    padding: 16px;
    border-left: 3px solid #4caf50;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    #container {
        padding: 20px;
    }
    
    .wufoo input.text,
    .wufoo textarea.textarea,
    .wufoo select.select {
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .wufoo input.btTxt {
        width: 100%;
        padding: 16px 24px;
    }
}