.modal-content.background-navy-medium {
    background: #1B1F31;
    border-radius: 15px;
    border: none;
}

.modal-header {
    border-bottom: none;
    padding: 20px 20px 0;
}

.modal-title {
    font-size: 24px;
    font-weight: 600;
}

.modal-body {
    padding: 20px;
}

.form_style {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: white;
    padding: 12px 15px;
    width: 100%;
    margin-bottom: 15px;
}

.form_style::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form_style:focus {
    outline: none;
    border-color: #00ff95;
    background: rgba(255, 255, 255, 0.15);
}

.check-box {
    display: flex;
    align-items: center;
    margin: 20px 0;
}

.check-box input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    accent-color: #00ff95;
}

.check-box label {
    font-size: 14px;
    margin: 0;
}

.modal-body .btn-success {
    background: #00ff95;
    border: none;
    padding: 12px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    color: #1B1F31;
    transition: all 0.3s ease;
}

.modal-body .btn-success:hover {
    background: #00cc78;
    transform: translateY(-2px);
}

.modal .close {
    opacity: 0.8;
    text-shadow: none;
    font-size: 28px;
}

.modal .close:hover {
    opacity: 1;
} 