#site-header,
#site-footer {
    display: none;
}

.login-bg {
    background: url('../../../../uploads/2025/10/shutterstock_2426538781-1.png') center/cover no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.login-card {
    background: #fff;
    padding: 50px;
    border-radius: 25px;
    width: 666px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
    text-align: center;
    z-index: 999;
}

.login-overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    background: #0009;
}

.login-logo {
    padding: 20px 0px;
}

.login-logo h3 {
    font-size: 48px;
    font-weight: bold;
    letter-spacing: -2px;
}

.login-card .login-logo img {
    width: 312px;
}

.tab-switch {
    display: flex;
    justify-content: center;
    margin: 20px 0;
    border-bottom: none;
}

.tab-btn {
    flex: 1;
    background: none;
    border: none;
    font-weight: 600;
    padding: 10px;
    cursor: pointer;
    border-radius: 0px;
    color: #222;
}

.tab-btn:hover {
    background-color: White;
    /* border-bottom: 2px solid #930708; */
    color: #222;
}

.tab-btn:focus:not(:focus-visible) {
    background-color: White;
}

.tab-btn.active {
    border-bottom: 2px solid #930708;
    color: #930708;
}

.login-form {
    display: none;
    text-align: left;
}

.login-form.active {
    display: block;
}

.form-group {
    margin-bottom: 15px;
}

.input-icon {
    position: relative;
}

.input-icon img {
    position: absolute;
    top: 50%;
    left: 15px;
    width: 15px;
    transform: translateY(-50%);
    height: 15px;
    object-fit: contain;
}

.form-row {
    display: flex;
    width: 100%;
    justify-content: center;
    column-gap: 20px;
}

.form-row .form-group {
    width: 100%;
}

.form-group label {
    margin-bottom: 10px;
    font-size: 14px;
}

.form-bottom label {
    font-size: 16px;
    display: flex;
    align-items: center;
    column-gap: 10px;
}

.form-bottom label p {
	margin-bottom: 0px;
}

.form-bottom input[type=checkbox] {
    width: 20px;
    height: 20px;
}

.input-icon input {
    width: 100% !important;
    padding: 10px 10px 10px 45px !important;
    border: 1px solid #ddd !important;
    border-radius: 50px !important;
}

.input-w-icon input {
    width: 100% !important;
    padding: 10px 20px !important;
    border: 1px solid #ddd !important;
    border-radius: 50px !important;
}

.login-btn {
    background-color: #930708 !important;
    color: #fff !important;
    width: max-content !important;
    display: flex !important;
    justify-content: space-between !important;
    padding: 5px 5px 5px 30px !important;
    margin: 40px 0px !important;
    border-radius: 100px !important;
    align-items: center !important;
    column-gap: 30px !important;
    position: relative;
}

.login-btn img {
    background-color: #fff;
    width: 50px;
    height: 50px;
    padding: 15px;
    border-radius: 100%;
}

.login-btn:hover {
    background-color: #750202;
}

.login-btn.loading {
    opacity: 0.7;
    cursor: not-allowed;
}

.loader {
    width: 16px;
    height: 16px;
    border: 2px solid #fff;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    display: inline-block;
    position: absolute;
    left: 80px;
}

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

    100% {
        transform: rotate(360deg);
    }
}

.login-message {
    text-align: center;
    margin-top: 10px;
    color: #930708;
}

.form-bottom {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}

.signup-text {
    margin-top: 15px;
    font-size: 14px;
    text-align: center;
    font-weight: 600;
}

.signup-text a {
    color: #930708;
}

.form-bottom a {
    font-size: 16px;
    color: #930708 !important;
    text-decoration: underline !important;
    cursor: pointer;
}

.form-bottom input[type="checkbox"] {
    accent-color: #930708;
}

.back-link {
    display: inline-block;
    width: 100%;
    margin-bottom: 10px;
    color: #333;
    font-size: 16px;
    text-align: left;
}

.back-link svg {
    margin-right: 10px;
}

@media only screen and (max-width: 767px) {
    .login-card h3 {
        font-size: 30px !important;
    }

    .form-row {
        flex-direction: column;
    }

    .login-card {
        flex-wrap: wrap;
    }

    .form-bottom label {
		flex-wrap: nowrap;
        align-items: flex-start;
    }

    .form-bottom {
        flex-wrap: wrap;
        row-gap: 10px;
    }

    .login-btn {
        width: 100% !important;
        margin: 20px 0px !important;
    }
}