* {
    font-family: 'Oswald', sans-serif, Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #ffffff;
    margin-bottom: 0px !important;
}

header {
    position: relative;
    margin-top: 6px !important;
    margin-bottom: 6px !important;
    height: 15vh;
}

header img {
    padding-top: 2vh;
    height: 250px;
    width: auto;
}

.content-area {
    background-color: white;
    background-image: url('../img/bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 85vh;
}

.success-card {
    background-color: transparent;
    border: 2px solid #333333;
}

.logo-white-box {
    background-color: transparent;
    border: 5px solid white;
    border-radius: 16px;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.white-text-genuine {
    font-size:35px;
    font-weight: 700;
    color: white;
}

.success-logo {
    min-width: 250px;
    height: auto;
}

.white-text-invalid {
    font-size: 35px;
    font-weight: 700;
    color: white;
}

.authenticate-another-link {
    text-decoration: underline !important;
    display: inline-block;
}

.error-card {
    background-color: rgba(204, 0, 0, 0.50);
    border: 2px solid #333333;
}

.error-content-wrapper {
    width: 200px;
    overflow: visible;
}

.error-arrow {
    display: flex;
    align-items: center;
    width: 130%;
    padding: 0;
}

.error-arrow-line {
    flex: 1;
    height: 2px;
    background-color: #ffffff;
    display: inline-block;
    max-width: 205px;
}

.error-arrow-head {
    color: #ffffff;
    font-size: 18px;
    line-height: 1;
    margin-left: -2px;
}

.icon-white-box {
    background-color: #ffffff;
    border-radius: 16px;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.warning-icon {
    max-height: 50%;
    max-width: 50%;
}

.alert-contact {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    background-color: #fef3cd;
    border: 1px solid #e0c97a;
    border-radius: 4px;
    padding: 10px 12px 10px 12px;
    font-size: 14px;
    color: #fff3cd;
    width: calc(100% - var(--bs-gutter-x, 1.5rem));
    max-width: 600px;
    text-align: left;
}

.alert-contact-close {
    position: absolute;
    top: 6px;
    right: 10px;
    background: none;
    border: none;
    font-size: 16px;
    line-height: 1;
    cursor: pointer;
    color: #666666;
    padding: 0;
}

.alert-contact-email {
    color: #0056b3;
    text-decoration: underline;
}

.text-yellow {
    color: #856404 !important;
    font-weight: normal;
    font-size: 20px;
}

.bg-green {
    background-color: black !important;
}

.text-white {
    color: white !important;
    font-weight: bold;
    font-size: 20px;
}

.btn-green {
    background-color: black !important;
    border-color: black !important;
    color: #ffffff !important;
}

.btn-green:hover {
    background-color: dimgrey !important;
    border-color: dimgrey !important;
}

.border-dark-box {
    border: 2px solid #333333;
    background-color: transparent;
}

.fs-14 {
    font-size: 14px;
}

.fs-16 {
    font-size: 16px;
}

.fs-18 {
    font-size: 18px;
}

.fs-20 {
    font-size: 20px;
}

.fw-600 {
    font-weight: 600;
}

.fw-700 {
    font-weight: 700;
}

.fw-800 {
    font-weight: 800;
}

.input-field {
    border: 1px solid #cccccc;
    border-radius: 4px;
    padding: 8px 12px;
    font-size: 14px;
    color: #999999;
    outline: none;
}

.input-field:focus {
    border-color: #007e32;
    color: #333333;
}

.auth-box {
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 576px) {
    header img {
        height: 160px;
        margin-left: -30px;
    }

    .alert-contact {
        top: 0px;
        padding-right: 10px;
    }

    .text-yellow {
        font-size: 14px;
    }

    .content-area {
        background-position: left top;
    }
}

