@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@400;500;600;700&display=swap');
body {
    font-family: "Inter", sans-serif;
    /* background: #fff url(../../images/dashboard.png) no-repeat; */
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.bgvector {
    position: absolute;
    top: 0;
}
.logo_cell {
    width: 100%;
    padding: 40px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}
.logo_cell img {
    max-width: 150px;
}
.logo_cell .mobile-logo{
    display: none;
}
.container-fluid {
    width: 100%;
    padding-right: var(--bs-gutter-x,.75rem);
    padding-left: var(--bs-gutter-x,.75rem);
    margin-right: auto;
    margin-left: auto;
}
.edit-profile__body .form-group label {
    font-size: 14px;
    line-height: 1.4285714286;
    font-weight: 500;
    color: var(--color-dark);
}
.edit-profile__body .form-control {
    height: 48px;
}
.card {
    border-radius: 10px;
    overflow: hidden;
    width: 100%;
    max-width: 500px;
    align-items: center;
}

.h-vh {
    height: 100vh;
}
.wsgbtn {
    height: 46px;
    font-size: 18px;
    border: 1px solid #1A76A3;
    background-color: #1A76A3;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-radius: 50px;
    text-transform: uppercase;
}
.wsgbtn:hover,
.wsgbtn:focus {
    box-shadow: none !important;
    background-color: transparent;
    color: #1A76A3 !important;
    border-color: #1A76A3 !important;
}
.wsgbtn:active {
    background-color: transparent;
    color: #1A76A3 !important;
    border-color: #1A76A3 !important;
    box-shadow: none !important;
}
.wsgbtn:disabled {
    background-color: #dddddd;
    color: #000 !important;
    box-shadow: none;
    border-color: #9d9d9d;
}
.brdrbtm {
    border-bottom: 1px dashed #ccc;
}

.d-flex-rowsetmain {
    display: flex;
    width: 100%;
    height: 100vh;
    padding: 20px;
}
.main-page-wrap{
    border: 2px solid #0a517e;
    border-radius: 10px;
    display: flex;
    width: 100%;
}
.col-leftset {
    width: 600px;
    height: 100%;
    display: inline-flex;
    position: relative;
    z-index: 1;
    border-radius: 10px;
    /* background-image: url(../../images/admin_graphic.png);
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover; */
}
.col-leftset:after {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url(../../images/main-bg.svg);
    background-repeat: no-repeat;
    background-position: center bottom -150px;
    z-index: -1;
    background-size: cover;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}
.col-righttset {
    width: calc(100% - 600px);
    height: 100%;
    display: inline-flex;
    position: relative;
    flex-direction: column;
    justify-content: center;
    padding-left: 10px;
    align-items: center;
}
.col-righttset-inner {
    display: inline-flex;
    justify-content: center;
    flex-direction: column;
    width: 75%;
    align-items: center;
}
.col-righttset .card-body {
    width: 100%;
    padding-top: 30px;
    padding-bottom: 30px;
}
.col-righttset-inner h1 {
    font-size: 48px;
    text-align: center;
    font-weight: 600;
    margin-bottom: 35px;
    text-transform: capitalize;
}
.col-righttset-inner h1 span {
    font-family: "Montserrat", sans-serif;
    color: #758D9A;
}
.vectorsetgrl {
    position: absolute;
    right: -73px;
    bottom: 0;
    height: 590px;
    transition: 0.5s;
}
.vectorsetgrl img {
    max-height: 100%;
}
.text-end a {
    color:rgb(52, 58, 64);
}
.edit-profile__body .form-control:focus {
    box-shadow: 0 0 10px #f0be1440;
    outline: none;
    border-color: #F0BE14;
}
.mobile {
    display: none;
}
.desktop {
    display: inline-flex;
}
.auth-bottom-links {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 20px;
    letter-spacing: 0.5px;
}
.auth-bottom-links a {
    margin-left: 5px;
    color: rgb(248, 54, 103);
    font-weight: 500;
}

@media (max-width: 1280px) {
    .col-righttset {
        width: calc(100% - 400px);
    }

    .col-leftset {
        width: 400px;
    }
}
@media (max-width: 991px) {
    .col-righttset {
        width: calc(100% - 260px);
    }
    .col-leftset {
        width: 260px;
    }
    .logo_cell {
        padding: 20px;
    }
    .logo_cell img {
        max-width: 120px;
    }
    .col-leftset:after{
        background-position: left bottom;
    }
    .col-righttset-inner h1{
        font-size: 36px;
        margin-bottom: 25px;
    }
}
@media (max-width: 767px) {
    .d-flex-rowsetmain {
        flex-direction: column;
        position: relative;
    }
    .main-page-wrap{
        flex-direction: column;
        height: 100%;
        position: relative;
    }
    .main-page-wrap:after{
        content: '';
        position: absolute;
        left: 0px;
        bottom: 0px;
        width: 100%;
        height: 100%;
        background: url(../../images/main-bg.svg);
        background-repeat: no-repeat;
        background-position: left bottom -350px;
        background-size: cover;
        z-index: -1;
        border-bottom-left-radius: 6px;
        border-bottom-right-radius: 6px;
    }
    .col-leftset {
        width: 100%;
        height: auto;
        background-color: #0D4776;
        border-top-left-radius: 6px;
        border-top-right-radius: 6px;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }
    .col-leftset:after{
        display: none;
    }
    .vectorsetgrl {
        position: fixed;
        left: 0;
        top: 200px;
    }
    .col-righttset {
        width: 100%;
        height: auto;
        padding: 0;
        max-width: 560px;
        margin: 0 auto;
    }
    .vectorsetgrl {
        height: 270px;
        width: 115px;
        right: 0;
    }
    .logo_cell {
        padding: 30px 10px;
        justify-content: center;
    }
    .logo_cell .mobile-logo{
        display: inline-flex;
    }
    .logo_cell .desktop-logo{
        display: none;
    }
    .logo_cell img {
        max-width: 100px;
    }
    .col-righttset-inner h1 {
        margin: 20px 0;
    }
    .col-righttset-inner {
        width: 100%;
        padding: 0 10px;
    }
    .col-righttset-inner .card {
        max-width: 100%;
        margin-bottom: 0px;
        box-shadow: none;
        background-color: transparent;
    }
    .col-righttset .card-body{
        background-color: transparent;
        padding: 0;
    }
}
@media (max-width: 680px) {
    .vectorsetgrl {
        display: none;
    }
    .col-righttset {
        height: auto;
        margin-top: 10px;
    }
    .col-righttset-inner h1 {
        margin-top: 0;
    }
    .desktop {
        display: none;
    }
    .mobile {
        display: inline-flex;
    }
}

@media (max-width: 575px) {
    .d-flex-rowsetmain{
        padding: 10px;
    }

    .logo_cell{
        padding: 20px 10px;
    }

    .logo_cell img{
        max-width: 80px;
    }

    .col-righttset-inner h1{
        font-size: 30px;
    }

    .col-righttset-inner{
        padding: 0 15px;
    }
    .main-page-wrap:after{
        background-position: left bottom -300px;
    }
}

@media (max-width: 480px) {
    .col-righttset-inner h1{
        font-size: 26px;
    }
}
