.sw-ev-form {
    max-width: 500px;
    margin: 20px auto;
    padding: 25px;
    border: 1px solid #eee;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.sw-ev-form label {
    display: block;
    margin-top: 15px;
    font-weight: 600;
    color: #fff;
    font-size: 14px;
}

.sw-ev-form input,
.sw-ev-form select {
    width: 100%;
    padding: 10px;
    margin-top: 6px;
    border: 2px solid #fff;
    font-size: 15px;
    transition: border-color 0.3s ease;
    box-sizing: border-box; /* Asegura que el padding no rompa el ancho */
    background-color:#002657 !important;
}

.sw-ev-form input:focus,
.sw-ev-form select:focus {
    border-color: #fff;
    outline: none;
    box-shadow: 0 0 0 2px rgba(0,38,87,0.1);
    background-color:#002657;
}

.sw-ev-form button {
    width: 100%;
    background: #002657;
    color: white;
    border: none;
    padding: 14px;
    margin-top: 25px;
    cursor: pointer;
    font-weight: bold;
    font-size: 16px;
    border-radius: 5px;
    transition: background 0.3s ease, transform 0.1s ease;
}

.sw-ev-form button:hover {
    background: #003a85;
}

.sw-ev-form button:active {
    transform: scale(0.98);
}

.sw-ev-form button:disabled {
    background: #ccc;
    cursor: not-allowed;
}

/* Estilo para el contenedor de respuesta/éxito */
#sw-ev-response {
    margin-top: 15px;
    text-align: center;
    font-size: 14px;
}