* {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

.login-form-wrapper {
    min-height: 100vh;
    padding: 90px 0;
    background-image: url(../img/login/raghnall-banner-image.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    height: 100%;
    width: 100%;
    display: flex;
    /* align-items: center; */
}

.right-img {
    display: flex;
    justify-content: end;
}

.broker-header h3 {
    margin-bottom: 0px;
    font-weight: 700;
}

.login-cover {
    padding: 30px 0;
    /* background-image: url(../img/login/raghnall-back-banner-image.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    height: 100%;*/
    background-color: white;
    width: 70%;
    display: flex;
    justify-content: center;
    margin: 0 auto;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: 25px;
}

.right-img {
    display: flex;
    justify-content: center;
}

.right-img img {
    width: 75%;
}

.broker-header {
    text-align: center;
    color: #7fba36;
    padding-bottom: 5px;
}

.form-wrap-cover-data {
    background: white;
    padding: 35px;
    border-radius: 15px;
    padding-top: 20px;
    padding-left: 70px;
}

.login-form {
    background-image: linear-gradient(rgb(0 180 251), rgb(0 132 243));
    /* background-color: antiquewhite; */
    padding: 139px 55px;
}

/* .login-cover{
    min-height: 70vh;
} */
.welcome {
    text-transform: uppercase;
    color: white;
    text-align: center;
    padding: 20px 0;
}

.img-sect {
    background-color: white;
    /* padding: 35px 35px; */
}

.btn-submit {
    background-color: rgb(0 205 148);
    font-weight: 500;
    text-transform: uppercase;
}

.form-group input[type="text"]::placeholder {
    text-align: center;
    font-size: 17px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input[type="password"]::placeholder {
    text-align: center;
    font-size: 17px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* input[type=checkbox]{
    background-color: transparent;
} */
.form-group input[type="password"] {
    text-align: center;
    letter-spacing: 5px;
}

.form-group input[type="text"] {
    text-align: center;
}

.img-sect img {
    width: 100%;
}

/* .form-group input[type="password"],
input[type="text"] {
    margin: 30px 0;
} */

.forgot a {
    text-decoration: none;
    color: black;
    font-size: 14px;
}

.form-check-label {
    font-size: 14px;
}

@media screen and (max-width:992px) {
    .login-form {
        padding: 60px 35px;
    }

    .login-form-wrapper {
        padding-top: 0px;

    }

    .form-group input[type="text"]::placeholder {
        font-size: 13px;

    }

    .form-group input[type="password"]::placeholder {
        font-size: 13px;

    }

    .login-cover {
        padding: 15px 15px;
        width: 100%;
        margin-top: 30px;
    }
}


/* Button colors */
/* From Uiverse.io by cssbuttons-io */
.broker-btn-repo {
    --color: #560bad;
    font-family: inherit;
    display: inline-block;
    width: 100%;
    /* height: 2.6em; */
    line-height: 2.5em;
    /* margin: 20px; */
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border: 2px solid #7fb936;
    transition: color 0.5s;
    z-index: 1;
    font-size: 17px;
    border-radius: 6px;
    font-weight: 500;
    color: #7fb936;
}

.broker-btn-repo:before {
    content: "";
    position: absolute;
    z-index: -1;
    background: #7fb936;
    height: 150px;
    width: 350px;
    border-radius: 50%;
}

.broker-btn-repo:hover {
    color: #fff;
}

.broker-btn-repo:before {
    top: 100%;
    left: 100%;
    transition: all 0.7s;
}

.broker-btn-repo:hover:before {
    top: -30px;
    left: -33px;
}

.broker-btn-repo:active:before {
    background: #7fb936;
    transition: background 0s;
}


/* input css */
/* From Uiverse.io by Satwinder04 */
.input-container {
    position: relative;
    margin: 40px auto;
    /* width: 200px; */
}

.input-container input[type="text"] {
    font-size: 18px;
    width: 100%;
    border: none;
    border-bottom: 2px solid #ccc;
    padding: 5px 0;
    background-color: transparent;
    outline: none;
}
.input-container input[type="password"] {
    font-size: 20px;
    width: 100%;
    border: none;
    border-bottom: 2px solid #ccc;
    padding: 5px 0;
    background-color: transparent;
    outline: none;
}

.input-container .label {
    position: absolute;
    top: 0;
    left: 0;
    color: #474747;
    transition: all 0.3s ease;
    pointer-events: none;
}

.input-container input[type="text"]:focus~.label,
.input-container input[type="text"]:valid~.label {
    top: -20px;
    font-size: 16px;
    color: #333;
}
.input-container input[type="password"]:focus~.label,
.input-container input[type="password"]:valid~.label {
    top: -20px;
    font-size: 16px;
    color: #333;
}

/* .input-container .underline {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 100%;
    background-color: #7fb936;
    transform: scaleX(0);
    transition: all 0.3s ease;
} */
.text-danger {
    color: #dc3545!important;
    font-size: 14px;
}
.input-container input[type="text"]:focus~.underline,
.input-container input[type="text"]:valid~.underline {
    transform: scaleX(1);
}
.input-container input[type="password"]:focus~.underline,
.input-container input[type="password"]:valid~.underline {
    transform: scaleX(1);
}

.login-cover1 {
    padding: 0px 0;
    background-color: white;
    width: 95%;
    display: flex;
    justify-content: center;
    margin: 0 auto;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: 25px;
    overflow: hidden;
}
.login-form1 {
    background-image: linear-gradient(rgb(194 219 136), rgb(179 211 107));
    /* background-color: antiquewhite; */
    padding: 139px 55px;
}
.btn-submit1 {
    background-color: rgb(245 125 40);
    font-weight: 500;
    text-transform: uppercase;
}
.img-sect1 {
    background-color: white;
    padding: 0px 35px;
}
.img-sect1 img {
    width: 100%;
}
h3.welcome.tile {
    padding: 0px 0px;
    padding-bottom: 2px;
    font-size: 24px;
    text-transform: capitalize;
    color: white;
}
span.text-white.tile-p {
    text-align: center;
    margin: 0 auto;
    display: flex;
    margin-bottom: 20px;
    font-size: 15px;
}
.img-sect1 {
    background-color: white;
    padding: 0px 40px;
}
.img-sect1 img {
    width: 95%;
}
.login-form-wrapper {
    min-height: 100vh;
    padding: 60px 0;
    background-image: none;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    height: 100%;
    width: 100%;
    display: flex;
    /* align-items: center; */
}