/* body {
        padding: 0%;
        margin: 0%;
        font-family: 'Roboto';
        

    } */

html {
    height: 100%;
}

body {
    min-height: 100vh;
    font-family: 'Roboto';
}

.login-bg {
    position: relative;
    background: url(../images/login-bg.jpg);
    background-position: center;
    background-size: cover;
    height: 100vh;
    background-repeat: no-repeat;
    width: 100%;
    display: flex;
    align-items: center;
}

.login-bg::before {
    background: rgba(255, 255, 255, 0.9);
    position: absolute;
    width: 100%;
    height: 100%;
    content: '';
    top: 0;
    left: 0;
}

.form-sec {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(86, 61, 130, 0.7);
    padding: 70px;
    border-radius: 20px;
    width: 570px;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}
form{
    width: 100%;
}
.logo {
    text-align: center;
}
a.crt-btn {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
}
.logo img {
    width: 600px !important;
}
.frgt-pass {
    text-align: right;
    margin-bottom: 10px;
    display: flex;
    justify-content: end;
}
.frgt-pass a {
    color: #fff;
    text-decoration: none;
    padding-top: 20px;
    font-size: 14px;
}
.btn-primary-1 {
    width: 200px;
    height: 50px;
    text-align: center !important;
    display: block;
    margin: 0 auto;
    margin-bottom: 15px;
}

.form-control {
    background: #FFFFFF 0% 0% no-repeat padding-box;
    border-radius: 23px;
    opacity: 1;
    color: #BCBBBB;
    height: 50px !important;
}
.form-sec p {
    color: #fff;
    margin-bottom: 40px;
}
.form-sec h2 {
    color: #ffc556;
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 10px;
}
/* Small Devices & above(Mobile) */

@media (min-width: 320px) {
    .main {
        display: flex;
        justify-content: center;
        align-content: center;
        height: 100vh;
        width: 100vw;
        align-items: center;
    }
    .back {
        opacity: 1;
        position: absolute;
        left: 0px;
        width: 50vw;
        height: 35vh;
        bottom: 0;
        z-index: -1;
    }
    input::-webkit-input-placeholder {
        color: #BCBBBB !important;
        text-align: left;
        font: normal normal normal 16px/42px Roboto;
        letter-spacing: 0px;
        text-transform: capitalize;
        opacity: 1;
    }
    .form-control:focus {
        border-color: #707070;
        box-shadow: none;
        color: #BCBBBB;
    }
    .btn-primary-1 {
        background-color: #FEB62B;
        color: #FFFFFF;
        border: 1px solid #707070;
        border-radius: 23px;
        border: none;
        text-align: left;
        letter-spacing: 0px;
        text-transform: uppercase;
        opacity: 1;
        font: normal normal normal 14px/15px Roboto;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .btn.focus,
    .btn:focus {
        box-shadow: none;
    }
    .btn:hover {
        color: #FFFFFF;
    }
}

@media (min-width: 768px) {
    .form-control {
        height: 40px;
    }
}

@media (min-width: 1920px) {
    .back {
        height: 43vh;
    }
}