div#main {
    width: 64em;
    max-width: calc(100% - 4em);
    margin: 0 auto;
}

.banner img {
    margin: 0em;
    cursor: pointer;
}

a.banner {
    text-decoration: none;
    border: none !important;
}

#main h1 {
    font-size: 2.5em;
    text-align: left;
    color: #26afdd !important;
    padding-bottom: 0.2em !important;
    padding-top: 0.1em !important;
}

p {
    color: white !important;
    margin-bottom: 2em !important;
}

a {
    color: #26afdd !important;
}

a:hover {
    color: white !important;
}

b {
    color: white !important;
}

p:has(input) {
    text-align: left;
    margin-bottom: 0em !important;
}

li {
    color: red !important;
}

label {
    color: white !important;
}

section .btn-primary {
    background-color: #26afdd !important;
    border: 3px #26afdd solid !important;
    color: #151A24 !important;
    border-radius: 15px;
    font-size: 18px;
    padding-left: 15px;
    padding-right: 15px;
}

.btn-outline-primary {
    border: 3px #26afdd solid !important;
    color: #26afdd;
    background-color: #151A24 !important;
    border-radius: 15px;
    font-size: 18px;
}

.btn-primary:hover,
.btn-primary:active,
.btn-primary:focus,
.light-bg .btn-primary:hover,
.light-bg .btn-primary:active,
.light-bg .btn-primary:focus {
    font-size: 18px;
    background-color: #151A24 !important;
    border: 3px #26afdd solid !important;
    color: white !important;
}

.btn-outline-primary:hover,
.btn-outline-primary:active,
.btn-outline-primary:focus {
    background-color: #26afdd !important;
    border: 3px #26afdd solid !important;
    color: #151A24 !important;
    border-radius: 15px;
    font-size: 18px;
}

input[type=text],
input[type=password],
input[type=email],
input[type=number],
input[type=tel],
textarea {
    width: 100%;
    padding: 10px 0;
    font-size: 16px;
    color: #fff !important;
    margin-bottom: 30px;
    border: none;
    border-color: #26afdd !important;
    border-bottom: 1px solid #26afdd;
    outline: none;
    background: transparent !important;
    border-radius: 0 !important;
    /* box-shadow: 0 0 1rem $palette_2, inset 0 0 1rem $palette_2, 0 0 0rem $palette_2, inset 0 0 0.2rem $palette_2, 0 0 0.2rem $palette_2, inset 0 0 0.5rem $palette_2; */
}

input:focus,
textarea:focus {
    border-bottom: 1px solid #ddd !important;
}

input::placeholder {
    opacity: 0 !important;
}

.check {
    display: none;
}

input:not(:-moz-placeholder-shown)+.check {
    display: block;
}

input:not(:-ms-input-placeholder)+.check {
    display: block;
}

input:not(:placeholder-shown)+.check {
    display: block;
}

input:not(:-moz-placeholder-shown):valid+.check:before {
    color: #26afdd;
    content: "\f00c";
}

input:not(:-ms-input-placeholder):valid+.check:before {
    color: #26afdd;
    content: "\f00c";
}

input:not(:placeholder-shown):valid+.check:before {
    color: #26afdd;
    content: "\f00c";
}

input:not(:-moz-placeholder-shown):invalid+.check:before {
    color: red;
    content: "\f00d";
}

input:not(:-ms-input-placeholder):invalid+.check:before {
    color: red;
    content: "\f00d";
}

input:not(:placeholder-shown):invalid+.check:before {
    color: red;
    content: "\f00d";
}