.reset-cards-form {
    border: 1px solid #ccc;
    padding: 15px;
    max-width: 400px;
    background: #f9f9f9;
    margin: 20px 0;
    border-radius: 6px;
    font-family: Arial, sans-serif;

}

.reset-cards-form label {
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

.reset-cards-form input[type="date"],
.reset-cards-form input[type="number"],
.reset-cards-form select {
    width: 100%;
    padding: 6px;
    margin-bottom: 15px;
    border: 1px solid #aaa;
    border-radius: 4px;
    box-sizing: border-box;
}

.reset-cards-form input[type="submit"] {
    background-color: #ff6600;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
}

.reset-cards-form input[type="submit"]:hover {
    background-color: #e65c00;
}

.reset-cards-success {
    color: green;
    font-weight: bold;
    margin-bottom: 10px;
}

.reset-cards-error {
    color: red;
    font-weight: bold;
    margin-bottom: 10px;
}



/* Confirmation input wider */
.reset-cards-form input#confirmation_text {
    width: 100% !important;
    padding: 8px !important;
    margin-bottom: 10px !important;
    border: 1px solid #aaa !important;
    border-radius: 4px !important;
    box-sizing: border-box !important;
}

/* Warning box at bottom */
.reset-warning {
    background: #fff3cd;
    border: 1px solid #ffeeba;
    padding: 10px;
    margin: 15px 0;
    color: #856404;
    border-radius: 4px;
    font-size: 14px;
}



#reset_submit:disabled {
    background: #ccc !important;
    color: #666 !important;
    cursor: not-allowed !important;
    opacity: 0.7 !important;
}

