html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
    scroll-margin: none;
    overflow-x: hidden;
    /* overflow-y: hidden; */
}

.main-container {
    min-height: 100%;
}



.logooo {
    /* background: url("/assets/BSS-logo.png") center center/cover no-repeat;
height: 100vh; */
    background-image: url('../../bg-logo.png');
    background-size: cover;
    height: 100vh;
}

.login-form h2 {
    color: #1e1e1e;
    font-family: "Poppins", sans-serif;
    font-size: 26px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.login-form p {
    color: #333;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}

.form-group {
    position: relative;
}

.form-control-icon {
    position: absolute;
    top: 34px;
    left: 24px;
    transform: translateY(-50%);
    cursor: pointer;
}

.form-control {
    width: 374px;
    padding: 23px 10px 25px 55px;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
}

.form-control:focus {
    color: #223f8b;
    background-color: #fff;
    border-color: #223f8b;
    outline: 0;
    box-shadow: unset !important;
}

.form-check-input {
    position: relative;
}

.form-check-label {
    left: 20px;
    top: 4px;
    position: absolute;
    color: #646363;
    font-family: Roboto;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
    /* 133.333% */
}

.btn-primary {
    display: block;
    width: 374px;
    padding: 18px 26px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 10px;
    background: linear-gradient(91.62deg, #FBCF12 0%, #F78D21 100.28%);
    border-color: #223f8b;
    border: unset;
}

.text-container {
    position: relative;
}

.colon-start {
    top: 82px;
    position: absolute;
    left: 50px;
}


@media (max-width: 1125px) {
    .logo {
        padding-left: 65px;
    }

    .login-form {
        padding-left: 70px;
    }
}

@media (max-width: 991px) {
    .logo {
        padding-left: 10px;
    }

    .login-form {
        padding-left: 6px;

    }

    .login-content {
        margin: 20px;
    }

    .form-control {
        width: 350px;
    }

    .btn-primary {
        width: 350px;
    }
}