/* ADMINAVI: PLUGIN STYLING */

/* 1. Style the Input Field */
.listmonk-form input[type="email"], 
.listmonk-form input[type="text"] {
    display: block;
    width: 100%;
    height: 52px;
    padding: 0 16px;
    background-color: #ffffff;
    border: 1px solid #78909c;
    border-radius: 6px;
    font-family: 'Archivo', sans-serif;
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
    box-sizing: border-box;
}

/* 2. Style the Button */
.listmonk-form input[type="submit"],
.listmonk-form button {
    display: block;
    width: 100%;
    height: 52px;
    background-color: #4b61b5;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-family: 'Archivo', sans-serif;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: opacity 0.2s;
}

.listmonk-form input[type="submit"]:hover,
.listmonk-form button:hover {
    opacity: 0.9;
}

/* 3. Success/Error Message Styling */
.listmonk-response {
    margin-top: 10px;
    font-size: 14px;
    padding: 10px;
    border-radius: 4px;
}
.listmonk-success {
    background-color: #ECFDF5;
    color: #065F46;
}
.listmonk-error {
    background-color: #FEF2F2;
    color: #991B1B;
}