.refill-form {
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.refill-form label {
    display: block;
    margin-top: 15px;
    font-weight: 600;
}

.refill-form label span {
    color: #e63946;
}

.refill-form input,
.refill-form select,
.refill-form textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border-radius: 6px;
    border: 1px solid #ccc;
}

.refill-submit-btn {
    width: 100%;
    margin-top: 20px;
    padding: 12px;
    background: #0073aa;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

.refill-submit-btn:disabled {
    opacity: 0.6;
}

.refill-submit-btn:hover {
    background: #005f87;
}

.refill-form .input-error {
    border: 2px solid #e63946;
    background: #ffe5e5;
}

.refill-form .error-msg {
    color: #e63946;
    font-size: 13px;
    margin-top: 4px;
}

.refill-form .shake {
    animation: shake 0.3s ease;
}

@keyframes shake {
    0% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(-5px);
    }
    50% {
        transform: translateX(5px);
    }
    75% {
        transform: translateX(-5px);
    }
    100% {
        transform: translateX(0);
    }
}