/*COMMON*/

body {
    color: #4c5258;
    font-size: 14px;
    letter-spacing: .5px;
    background-color: #f7f8fa;
    overflow-x: hidden;
    font-family: Roboto, sans-serif;
}

a {
    text-decoration: none
}

.form-control,
.form-select {
    border-radius: 0;
    font-size: 14px;
}

.form-control:focus,
.form-select:focus {
    box-shadow: none;
}

.input-group-text {
    border-radius: 0;
}

.form-check-input {
    width: 1.2em;
    height: 1.2em;
    margin-top: 0.15em;
}

.btn {
    border-radius: 0;
}

.radius-15 {
    border-radius: 15px;
}

.bg-login {
    position: relative;
    background-image: url(../images/auth-bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    z-index: 1;
}

.bg-login:before{
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgb(0 0 0 / 70%);
    z-index: -1;
}

.wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.authentication-login {
    padding-top: 3rem;
    padding-bottom: 2rem;
}

.bg-login-color {
    background-color: #5f4a99 !important;
}

.authentication-login .card{
    color: #fff;
    background-color: rgb(0 0 0 / 70%);
    box-shadow: 0 2px 6px 0 rgb(218 218 253 / 20%), 0 2px 6px 0 rgb(206 206 238 / 30%);
}

/*Forgot*/

.bg-forgot {
    background-image: url(../images/authentication-bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.forgot-box {
    width: 27rem;
}

@media screen and (max-width: 767px) {
    .authentication-forgot {
        height: auto;
        padding: 2.5rem 1rem;
    }
}

/*Reset*/

.bg-reset {
    background-image: url(../images/authentication-bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.reset-box {
    width: 27rem;
}

@media screen and (max-width: 767px) {
    .authentication-reset {
        height: auto;
        padding: 2.5rem 1rem;
    }
}