.modal-content {
    border: none;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.modal-header {
    background-color: #e75480;
    color: white;
    border-radius: 12px 12px 0 0;
    border: none;
    padding: 20px;
}

.modal-header .modal-title {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.modal-header .btn-close {
    filter: brightness(0) invert(1);
    opacity: 0.7;
}

.modal-header .btn-close:hover {
    opacity: 1;
}

.modal-body {
    padding: 25px;
}

.modal-body .form-label {
    color: #333;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.modal-body .form-control {
    border: 1.5px solid #e3e6f0;
    border-radius: 8px;
    padding: 10px 12px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.modal-body .form-control:focus {
    border-color: #e75480;
    box-shadow: 0 0 0 0.2rem rgba(231, 84, 128, 0.15);
}

.modal-body .form-control::placeholder {
    color: #bbb;
}

.modal-footer {
    border-top: 1px solid #e3e6f0;
    padding: 15px 25px;
    gap: 10px;
}

.modal-footer .btn {
    border-radius: 8px;
    font-weight: 600;
    padding: 10px 25px;
    transition: all 0.3s ease;
    font-size: 14px;
}

.modal-footer .btn-secondary {
    background-color: #f0f0f0;
    color: #333;
    border: none;
}

.modal-footer .btn-secondary:hover {
    background-color: #ddd;
    color: #333;
}

.modal-footer .btn-primary {
    background-color: #e75480;
    border: none;
    color: white;
}

.modal-footer .btn-primary:hover {
    background-color: #d4446b;
    color: white;
}

.mb-3 {
    margin-bottom: 18px !important;
}

.mb-3:last-child {
    margin-bottom: 0 !important;
}
