﻿html, body {
    height: 100%;
    margin: 0px;
    padding: 0px;
    background-color: #ffffff;
}

.global-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f5;
}

form {
    padding-top: 10px;
    font-size: 14px;
    margin-top: 30px;
}

.card-title {
    font-weight: 300;
}

.btn {
    font-size: 14px;
    margin-top: 20px;
}
.bg_img {
    position: absolute;
    object-fit: cover;
    height: 100%;
    width: 100%;
}
.login_body {
    background-image: url("/Images/login_bg.png");
    background-repeat: no-repeat;
    background-position: center;
    height: 100%;
    width: 100%;
}
.login-form {
    width: 450px;
    margin: 20px;
    padding: 20px;
}
.logo {
    width: fit-content;
    margin: auto;
}

.sign-up {
    text-align: center;
    padding: 40px 0 0;
    font-size: 13px;
    color: #646464;
}

.alert {
    margin-bottom: -30px;
    font-size: 13px;
    margin-top: 20px;
}
.theme_btn {
    padding: 10px 14px;
    background-color: #9e3033;
    border-radius: 5px;
    text-align: center;
    color: #ffffff;
    cursor: pointer;
    border: unset;
    width: 100%;
}


/*Loader css start*/
.loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999999;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #9E3033;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
/*Loader css legend */