body {
    background-color: #000000;
    color: #fff;
    margin-bottom: 100px;
    /* Adjust for the footer height */
}

.card {
    border: none;
    border-radius: 10px;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
}

.card-header {
    background-color: #27B5BD;
    border-radius: 10px 10px 0 0;
    color: #fff;
    font-weight: bold;
    text-align: center;
}

.btn-submit {
    background-color: #27B5BD;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    flex: 1;
    margin-right: 5px;
    /* Add a small margin between buttons */
}

.btn-submit:hover {
    background-color: #4ab3b1;
}

.btn-danger {
    background-color: #bb2d3b;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    flex: 1;
}

.btn-danger:hover {
    background-color: #bd081a;
}

.form-control {
    border-radius: 5px;
    border-color: #ced4da;
}

.footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #343a40;
    color: #fff;
    text-align: center;
    padding: 10px 0;
}

@media (max-width: 767px) {
    .d-md-flex {
        flex-direction: column; /* Stack buttons vertically on mobile */
    }

    .btn-submit {
        order: 1; /* Change the order of the first button on mobile */
    }

    .btn-danger {
        order: 2; /* Change the order of the second button on mobile */
    }
}
