@import url('https://fonts.googleapis.com/css2?family=Karla:ital,wght@0,400;0,500;0,600;0,700;0,800;1,300&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Karla', sans-serif;
}

body {
    background: #fff;
    transition: 0.4s all;
}

html {
    scroll-behavior: smooth;
    background: #fff;
    color: #555;
}

.login-bg {
    height: 100vh;
    background-image: url('../images/bg-pattern.png'), url('../images/login-bg.jpg');
    background-size: auto, cover;
    background-position: top left, center center;
    background-repeat: repeat, no-repeat;
}

.login-box-wrapper {
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-box {
    width: 450px;
    height: auto;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, .5);
    padding: 20px;
}

.form-title {
    margin-top: 15px;
    font-weight: 800;
}

.form-label {
    opacity: .8;
}

.cs-input {
    border: 0px;
    border: 1px solid lightgray;
    outline: none;
    padding: 10px;
}

    .cs-input:focus {
        outline: none;
        border-color: #ff6501;
    }

.ShowPass {
    position: absolute;
    right: 15px;
    top: 13px;
    z-index: 9999999999999 !important;
}

::placeholder {
    opacity: .5;
    font-size: 13px;
}

#btnLogin {
    display: block;
    background: #f57823;
    color: #fff;
    border-radius: 5px;
    padding: 10px;
    text-decoration: none;
    width: 250px;
    margin: auto;
}

    #btnLogin:hover {
        background: #00506a;
    }

#btnForgotten {
    font-size: 13px;
    text-decoration: none;
    color: #000;
}

.login-ftr {
    position: fixed;
    right: 0;
    left: 0;
    bottom: 0;
    text-align: center;
}

    .login-ftr p {
        font-size: 12px;
        color: #ffffff73;
    }

        .login-ftr p a {
            text-decoration: none;
            color: #b7b7b775;
        }

.login-bg i {
    position: absolute;
    bottom: 20px;
    right: 20px;
    transform: translate(50%, 50%);
    cursor: pointer;
}

@media screen and (max-width: 991px) {
    .login-box-wrapper {
        justify-content: center;
    }

    .login-box {
        margin-right: auto;
        margin-left: auto;
    }
  
}





@media screen and (max-width: 575px) {
    /*.login-bg{
		background: #fff;
	}*/
    .login-box {
        width: 100%;
        margin-left: 15px;
        margin-right: 15px;
        box-shadow: none;
    }

    .login-ftr p,
    .login-ftr p a {
        color: gray;
    }

    
}
