.contactPage {
    font-family: 'Montserrat', sans-serif;
}

#main-games {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-image: linear-gradient(left, #2c2c2c, #2c2c2c calc(100% - 31px), transparent calc(100% - 31px), transparent 100%);
    background-image: -webkit-linear-gradient(left, #2c2c2c, #2c2c2c calc(100% - 31px), transparent calc(100% - 31px), transparent 100%);
}
form {
    width: 80%;
}

section.inputs {
    width: 70%;
}

section.inputs input,
section.inputs select,
section.text textarea {
    background-color: transparent !important;
    border: 2px solid white;
    color: white !important;
    border-radius: 2px;
    margin-top: 5px;
}

section.inputs select option {
    color: black;
}

section.inputs input,
section.inputs select {
    height: calc(2.8rem + 2px) !important;
}

section.inputs input:focus,
section.inputs select:focus,
section.text textarea:focus {
    background-color: transparent !important;
    border-color: rgba(166, 91, 47, 0.8);
    outline: 0;
    box-shadow: 0 0 0 0.1rem rgba(166, 91, 47, 0.25);
}

section.inputs input::placeholder,
section.inputs select::placeholder,
section.text textarea::placeholder {
    color: white;
    opacity: 1;
}

select::-ms-expand {
    display: none;
}

.contactPage nav#web {
    background-image: url('../theme/rank-navbar.png');
}

.contactPage nav#web ol {
    width: 100%;
}

.contactPage ol > li:hover > a,
ul > li:hover > a {
    text-decoration: none;
}

.contactPage nav#mobile {
    background-image: url('../theme/mobile-rank-navbar.png');
}

.contactPage nav#mobile ol {
    background-image: none;
}

.contactPage #main-games {
    padding-top: 18px;
    width: calc(100% - 26px);
    padding-right: 21px;
}

.contactPage #statsTable2 {
    margin-top: -40px;
}

.top-section {
    width: 100%;
    display: flex;
    flex-direction: row;
}

section.icon {
    width: 30%;
    border: 2px solid white;
    color: white !important;
    border-radius: 2px;
    margin-top: 5px;
    margin-left: 5px;
    display: block;
    background-image: url('../theme/approved-icon.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 70%;
}

section.bottom {
    margin-top: 5px;
    display: flex;
    color: white;
}

section.bottom button,
section.bottom button:hover,
section.bottom button:focus {
    background-color: #f68833;
    outline: none;
    border: 2px solid #ffaf72;
    color: white;
    font-size: 130%;
    letter-spacing: 1.5px;
    width: 150px;
    height: 45px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    height: 100%;
    transition: 0.3s;
}

section.bottom button:hover {
    transform: scale(1.1);
    transition: 0.3s;
}

@media screen and (max-width: 600px) {
    section.icon {
        width: 40%;
    }
}

section.messages {
    position: relative;
    margin-top: 5px;
}

.success,
.error {
    text-align: center;
    position: absolute;
    width: 100%;
}

.error {
    color: darkred;
}
.success {
    color: #198754;
}

.button-spinner {
    display: none;
    margin-left: 10px;
    line-height: 1.5;

    animation-name: spin;
    animation-duration: 1000ms;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
