/* .html,
body {
    padding: 0px;
    margin: 0px;
}

.left-banner-img {
    width: 100%;
    height: 100vh;
    background-size: cover;
    background: linear-gradient(rgba(0, 42, 182, 0.5), rgba(27, 185, 248, 0.5)), url('/static/images/base/bg2.jpg');
}

.txt-head {
    font-size: 60px;
    font-weight: 700;
    color: #fff;
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: txt-size 0.5s;
}

.social-icon {
    margin-top: 10px;
    padding-left: 5px;
}

.social-icon i {
    font-size: 25px;
    padding: 5px 10px;
    cursor: pointer;
}

.social-icon i:hover {
    background: rgb(9, 161, 248);
    color: #fff !important;
    border-radius: 50%;
}

.bolder {
    font-weight: 700;
}

.right-banner {
    animation: fade-in 2s;
}

@keyframes fade-in {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes txt-size {
    0% {
        font-size: 100px;
    }

    25% {
        font-size: 90px;
    }

    50% {
        font-size: 80px;
    }

    75% {
        font-size: 70px;
    }

    100% {
        font-size: 60px;
    }
}


.field-icon {
    float: right;
    margin-top: -2rem;
    position: relative;
    z-index: 2;
} */

.text-own-color{
    color: #343C76 !important;
}
.btn-primary{
    border: 1px solid #343C76;
    background-color: #343C76 !important;
}
.btn{
    border-radius: 25px !important;
    padding: 0.5rem !important;
}
.toggle-password{
    position: absolute;
    bottom: 0.5rem;
    right: 0;
    font-size: 1.3rem;
}
.form-control-lg{
    background-color: #e5e5e569;
    border-radius: 25px;
    border: none;
}
.form-control:focus {
    color: #495057;
    background-color: #fff;
    border-color: #d9dcf0 !important;
    outline: 0;
    box-shadow: 0 0 0 0.2rem #d9dcf0 !important;
}
label{
    font-weight: 700;
}
.img-fluid{
    width: 90rem;
}
.border-own{
    box-shadow: 0px 0px 4px 5px #e9e9e9;
    border: 1px solid #d0d0d0 !important;
}