/**
 * Contact Form SES Widget Styles
 */

.ses-contact-form-container {
    max-width: 100%;
    margin: 0 auto;
}

.ses-contact-form {
    width: 100%;
}

.ses-form-field {
    margin-bottom: 15px;
}

.ses-form-field input {
    height: 54px;
    padding: 0 20px;
    border: 1px solid rgba(0, 0, 0, 0.32);
    border-radius: 8px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%;
    background-color: #f9f9f9;
    color: #333;
    font-size: 16px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.ses-form-field textarea {
    width: 100%;
    height: auto;
    padding: 20px;
    font-size: 16px;
    border: 1px solid rgba(0, 0, 0, 0.32);
    border-radius: 8px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: #f9f9f9;
    color: #333;
    transition: all 0.3s ease;
    box-sizing: border-box;
    min-height: 150px;
}

.ses-form-field input:focus,
.ses-form-field textarea:focus {
    outline: none;
    border-color: #48a7c2;
    box-shadow: 0 0 0 2px rgba(72, 167, 194, 0.2);
}

.ses-form-submit {
    background-color: #48a7c2;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 15px 30px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: auto;
    display: inline-block;
    text-align: center;
    height: 54px;
}

.ses-form-submit:hover {
    background-color: #3a8ca3;
}

.ses-form-message {
    margin-top: 15px;
    padding: 10px;
    border-radius: 4px;
    display: none;
}

.ses-form-message.success {
    display: block;
    color: #4CAF50;
    background-color: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.ses-form-message.error {
    display: block;
    color: #F44336;
    background-color: rgba(244, 67, 54, 0.1);
    border: 1px solid rgba(244, 67, 54, 0.3);
}

@media (max-width: 768px) {
    .ses-form-submit {
        width: 100%;
    }
} 