/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

/* Registration Form Styles */
.sms-registration-field {
    margin-bottom: 16px;
}

.sms-registration-field label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.sms-registration-field .required {
    color: #d63638;
}

.sms-registration-field input,
.sms-registration-field select {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}

/* File upload styling */
.sms-registration-field input[type="file"] {
    padding: 10px 0;
    border: 1px dashed #ddd;
    background-color: #f9f9f9;
    text-align: center;
    cursor: pointer;
}

.sms-registration-field input[type="file"]:hover {
    border-color: #2271b1;
    background-color: #f0f6fc;
}

#permit-upload-preview {
    padding: 10px;
    background-color: #f9f9f9;
    border-radius: 4px;
    text-align: center;
}

#permit-upload-preview img {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.sms-registration-field .description {
    display: block;
    margin-top: 5px;
    font-size: 12px;
    color: #646970;
}

/* Error messages */
.sms-error {
    color: #d63638;
    font-weight: 500;
    padding: 5px 0;
}

/* Responsive styles */
@media screen and (max-width: 782px) {
    .sms-registration-field input,
    .sms-registration-field select {
        font-size: 16px; /* Prevents zoom on mobile */
    }
} 