body {
    min-height: 100vh;
    background: rgb(40, 75, 99);
    font-size: 16px;
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
}

.form-label {
    font-weight: 700;
    text-transform: uppercase;
}

.form-control,
.form-select {
    color: #26507f;
    text-transform: uppercase;
    outline: none;
    font-size: 1em;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.form-holder {
    background: rgb(217, 217, 217);
}

.btn-primary {
    background: #3c6e71;
    color: #fff;
    border: 0;
    font-size: 1em;
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
}

.btn-primary:hover {
    background: #2a5255;
}

.loading-container {
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loading {
    text-align: center;
}

.hide {
    display: none;
}

.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50px;
}