.page-template-bon-teb-blank-page-template.wd-sticky-nav-enabled {
    margin-right: 0;
}


.hh-core-auth-container {
    width: 100vw;
    height: 100vh;
    background-size: cover; /* Covers entire screen */
    /* Centers image */
    /* Prevents repeating */
    background: #fff no-repeat center;
    display: flex; /* Enables flexbox */
    justify-content: center; /* Centers horizontally */
    align-items: center; /* Centers vertically */
}

.hh-core-auth-container form {
    width: 300px;
    height: auto;
    background-color: rgba(255, 255, 255, 0.8); /* White box with transparency */
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.hh-core-auth-mobile {
    height: 45px !important;
    border-radius: 5px !important;
    border-top-width: 0 !important;
    border-right-width: 0 !important;
    border-bottom: 1px solid #9a9a9a !important;
    border-left-width: 0 !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    background-color: #f7f7f7 !important;
    color: #4d4d4d !important;
    display: block;
    font-size: .875rem !important;
    outline: 0;
    width: 100% !important;
    -webkit-box-sizing: border-box !important;
    box-sizing: border-box;
    text-align: center;
}

.hh-core-auth-form-submit {
    width: 100%;
    text-align: center !important;
    height: 52px;
    min-height: 48px !important;
    position: relative !important;
    background-color: var(--wd-primary-color) !important;
    border: 1px solid var(--wd-primary-color) !important;
    color: #fff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 12px !important;
    cursor: pointer !important;
    user-select: none;
    box-sizing: border-box;
}

.hh-core-submit-container {
    width: 100%;
    margin-top: 16px !important;
}

hh-form-error {
    display: none; /* Hidden by default */
    color: #d93025; /* Bright red for errors */
    background-color: #fdecea; /* Light red background */
    border: 1px solid #f5c2c0; /* Subtle border */
    border-radius: 6px; /* Rounded corners */
    padding: 10px 14px; /* Spacing around text */
    margin-top: 12px; /* Space above */
    font-size: 14px; /* Readable font size */
    font-weight: 500;
    line-height: 1.5;
    transition: opacity 0.3s ease, transform 0.3s ease; /* Smooth animation */
    opacity: 0; /* For fade effect */
    transform: translateY(-5px);
    max-width: 100%;
    word-wrap: break-word; /* Handle long text gracefully */
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    text-align: center;
}

/* When showing errors, toggle this class in JS */
.hh-form--show-error {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.hh-core-auth-container .hh-form--show-error {
    opacity: 1;
    top: 50px;
    transform: translateY(-50%);
    display: unset !important;
}

.hh-form-control {
    display: flex;
    flex-flow: column;
    margin-bottom: 20px
}

#countdown-timer-container {
    margin-right: 10px;
}

#retry-message:hover {
    color: #000;
}

#retry-message {
    cursor: pointer;
}

/* Spinner */
.spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid var(--wd-primary-color);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    vertical-align: middle;
    margin-left: 10px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.hh-swiss-hidden {
    display: none;
}

.hh-form-control #password {
    display: none;
}