/** Simple Contact Form Styles - Mobile-First Responsive Design */

/* Wrapper */
.scs-wrapper {
    max-width: 100%;
    margin: 0;
    padding: 0;
    font-family: inherit;
}

/* Status-Nachrichten */
.scs-status {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 4px;
    font-weight: 500;
}

.scs-status--success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.scs-status--error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Formular */
.scs-form {
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
}

/* Honeypot verstecken */
.scs-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* Felder */
.scs-field {
    margin-bottom: 20px;
}

.scs-field label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #000;
    font-size: 15px;
    font-family: "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.scs-required {
    color: #dc3545;
}

.scs-field input {
    width: 100%;
    padding: 10px 0;
    border-radius: 0;
    font-family: inherit;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
    background: transparent;  
    border: 1px solid #e1e1e1;
    color: #333;
    font-size: 15px;    
}


.scs-field textarea {
    width: 100%;
    padding: 10px 0;
    border-radius: 0;
    font-family: inherit;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
    background: transparent;  
    border: 1px solid #e1e1e1 !important;
    color: #333 !important;
    font-size: 15px !important;
}

.scs-field input:focus,
.scs-field textarea:focus {
    outline: none;
    border-bottom-color: #000;
}

.scs-field textarea {
    resize: vertical;
    min-height: 100px;
}

/* Fehler-Styling */
.scs-error-input {
    border-bottom-color: #dc3545 !important;
}

.scs-error-message {
    display: block;
    color: #dc3545;
    font-size: 13px;
    margin-top: 6px;
}

/* Submit-Button */
.scs-submit {
    background-color: #7b2cbf;
    color: #ffffff;
    padding: 12px 40px;
    border: none;
    border-radius: 0;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: auto;
    display: inline-block;
}

.scs-submit:hover {
    background-color: #6a24a8;
}

.scs-submit:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(123, 44, 191, 0.25);
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
    .scs-field input[type="text"],
    .scs-field input[type="email"],
    .scs-field textarea {
        font-size: 16px;
    }
}