.modalBox {
    display: none;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.65);
    z-index: 9999;
}

.modal-content {
    background: #1f1f1f;
    color: white;
    width: 350px;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
    animation: fadeIn 0.3s ease-in-out;
}

.modal-header p {
    text-align: center;
    font-size: 18px;
    border-bottom: 1px solid #555;
    padding-bottom: 8px;
    margin-bottom: 10px;
}

.modal-body p {
    text-align: center;
    font-size: 15px;
    margin-bottom: 20px;
}

.modal-footer {
    display: flex;
    justify-content: space-evenly;
}

.modal-footer input[type="submit"],
.modal-footer button {
    border: none;
    border-radius: 8px;
    padding: 8px 20px;
    cursor: pointer;
    color: white;
    transition: background 0.2s ease;
}

.modal-footer input[type="submit"] {
    background: #ff4141;
}

.modal-footer input[type="submit"]:hover {
    background: #ff2a2a;
}

.modal-footer button {
    background: #444;
}

.modal-footer button:hover {
    background: #666;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.form-group {
    width: 100%;
    margin: 20px 0px;
}

.form-group input {
    border-radius: 10px;
    width: 100%;
    background-color: #2e2e2e;
    color: white;
    font-size: 14px;
    font-weight: 100;
    padding: 10px;
    outline: none;
}

.form-group p {
    text-align: left;
    margin: 0px;
}