/* Базовый стиль для темной темы */
#srm-service-form-container, #srm-callback-form-container {
    max-width: 700px;
    margin: 20px auto;
    padding: 20px;
    background: #222; /* Темный фон */
    border: 1px solid #444;
    color: #eee;
    font-family: Arial, sans-serif;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

#srm-service-form-container h3, #srm-callback-form-container h3 {
    color: #f0f0f0;
    border-bottom: 2px solid #CC0000; /* Красная линия */
    padding-bottom: 10px;
    margin-top: 0;
}

#srm-service-form label, #srm-callback-form label {
    display: block;
    margin-top: 15px;
    font-weight: bold;
    color: #bbb;
}

#srm-service-form input[type="text"],
#srm-service-form input[type="tel"],
#srm-service-form input[type="email"],
#srm-service-form textarea,
#srm-callback-form input[type="text"],
#srm-callback-form input[type="tel"],
#srm-callback-form textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    background-color: #333;
    border: 1px solid #555;
    color: #fff;
    box-sizing: border-box;
    border-radius: 0;
}

#srm-service-form button[type="submit"],
#srm-callback-form button[type="submit"] {
    background-color: #CC0000; /* Красный акцент */
    color: white;
    border: none;
    padding: 15px 30px;
    cursor: pointer;
    margin-top: 25px;
    font-size: 18px;
    transition: background-color 0.3s;
    font-weight: bold;
    border-radius: 0;
}

#srm-service-form button[type="submit"]:hover,
#srm-callback-form button[type="submit"]:hover {
    background-color: #FF3333;
}

.srm-form-message {
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 0;
}

.srm-form-message.success {
    background-color: #105010;
    color: #e0ffe0;
    border-left: 5px solid #3c763d;
}

.srm-form-message.error {
    background-color: #7a2525;
    color: #ffe6e6;
    border-left: 5px solid #a94442;
}