@font-face {
    font-family: 'LatoRegular';
    src: url("fonts/Lato-Regular.ttf");
}

@font-face {
    font-family: "Roboto-Bold";
    src: url("fonts/Roboto-Bold.ttf");
}

@font-face {
    font-family: "Roboto-Medium";
    src: url("fonts/Roboto-Medium.ttf");
}

@font-face {
    font-family: "Roboto-Regular";
    src: url("fonts/Roboto-Regular.ttf");
}

@font-face {
    font-family: "RobotoSlab-VariableFont-wght";
    src: url("fonts/RobotoSlab-VariableFont_wght.ttf");
}

body,
html {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: LatoRegular;
    font-size: 16px;
}

.top-bar {
    font-size: 12px;
    font-family: LatoRegular;
    letter-spacing: 0.07em;
    z-index: 10;
}

.bg-cover {
    background: url('images/login-background-2.jpg') no-repeat center center;
    background-size: cover;
    width: 100%;
    position: relative;
    background-position: top;
    background-attachment: fixed;
}

.bg-cover::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(22 18 18 / 53%);
    z-index: 1;
    pointer-events: none;

}

.logo-img {
    width: 111px;
    height: 111px;
    object-fit: contain;
    margin: 10px 0px 30px 0px;
    background: transparent;
    z-index: 2;
    position: relative;
}

.login-card {
    position: relative;
    z-index: 2;
    width: 526px;
    min-height: 604px;
    background: #fff;
    border-radius: 30px;
    padding: 25px 0px 0px 0px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.13);
    border: none;
}
.card-body{
        margin: 0px 6%;
    position: relative;
    display: block;
}
.welcome-title {
    font-size: 24px;
    font-family: Roboto-Bold;
    font-weight: bold;
}

hr {
    border-top: 2px solid #101417;
    margin: 0px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.input-style,
.input-style:focus,
.input-style:active {
    font-size: 13px;
    font-family: LatoRegular;
    color: #242121;
    text-shadow: 0px 0px 0px #242121;
    border: 2px solid #a39595;
    border-radius: 8px;
    padding: 0px 10px;
    box-shadow: none;
    letter-spacing: 1px;
    min-height: 50px;
    
}
.custom-select{
    -webkit-appearance: none;
    -moz-appearance: none;
    background: transparent;
    background-image: url('images/gt7mEb01.svg');
    background-repeat: no-repeat;
    background-position-x: 100%;
    padding-right: 2rem;
    background-size: contain;
}

.login-btn {
    background-color: #ba1222 !important;
    color: #fff;
    border-radius: 7px;
    font-size: 13px;
    border: none;
    font-family: LatoRegular;
    letter-spacing: 0.25em;
    transition: background 0.18s;
}

.login-btn:hover,
.login-btn:focus {
    background-color: #ba1222 !important;
    color: #fff;
}

.remember-label {
    font-size: 14px;
    font-family: LatoRegular;
    color: #111;
}

.forgot-link {
    font-size: 14px;
    color: #222;
    text-decoration: underline;
    font-family: LatoRegular;
}

.need-help{
    font-size: 14px;
    font-family: LatoRegular;
    color: #222;
    margin: 20px 0px 40px 0px;
    display: block;
}

.click-here-link {
    color: #111;
    text-decoration: underline;
    font-size: 14px;
    font-family: LatoRegular;
}
.register-link {
    color: #111;
    text-decoration: underline;
    font-size: 16px;
    font-family: Roboto-Regular;
    font-weight: 600;
}

.new-user {
    font-size: 16px;
    font-family: RobotoSlab-VariableFont-wght;
    color: #222;
    font-weight: 500;
}

@media (max-width: 600px) {
    .login-card {
        padding: 18px 5vw 10px 5vw;
        width: 98vw;
    }

    .logo-img {
        width: 90px;
        height: 90px;
    }

    .welcome-title {
        font-size: 1.2rem;
    }
}