body{
    padding-top: 60px;
    background-color: #11191f;
}

body, body *{color: white;}

.container-fluid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: #1f2d38;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

li a{
    color: white;
}

.container {
    display: flex;
    flex-direction: column;
    margin: auto;
}

.selections {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.option {
    display: flex;
    flex-direction: column;
    flex-basis: 48%;
    min-height: 600px;
    border-radius: 8px;
    padding: 20px;
    justify-content: space-between;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    background-color: #ffffff;
    transition: box-shadow 0.3s ease;
    position: relative;
}

.option button{
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 80%;
    transform: translateX(-50%);
}

.container .selections .option .info h2,
.container .selections .option .info ul,
.container .selections .option .info ul li,
.container .selections .option .info ul p,
.container .selections .option .info ul strong{
    color: black !important;
}

#FORMB {
    max-width: 80%;
    height: auto;
    display: block;
    margin: auto;
}

#XLSX {
    max-width: 60%;
    height: auto;
    display: block;
    margin: auto;
}

.form-row {
    display: flex;
    width: 100%;
    margin-bottom: 10px;
}

.form-group {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-right: 10px;
}

.form-row .form-group:last-child {
    margin-right: 0;
}

.name, .phone {
    flex: 2;
}

.email, .subject {
    flex: 2;
}

textarea#message {
    flex: 1;
    margin-right: 0;
}