.form-wrapper .left {
    width: 46%;
    margin-right: 4%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #DBEFFF;
    border-radius: 30px;
    border: 1px solid #0C3485;
    position: fixed;
    bottom: 40px;
    top: 40px;
}

.form-wrapper {
    display: flex;
    align-items: center;
    padding: 40px;
    height: 100vh;
}

.form-wrapper .right {
    width: 50%;
    margin-left: 50%;
}

.form-wrapper .left img {
    width: 55%;
}

.form-wrapper .title {
    font-size: 50px;
    font-weight: 700;
    color: #0C3485;
}

.form-wrapper .form-control {
    background: transparent;
    border: 1px solid #00000038;
}

.form-group label {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
    font-family: 'Inter';
}

.iconn-field {
    position: relative;
}
.iconn-field .icon {
    position: absolute;
    right: 15px;
    top: 12px;
    height: 26px;
  }
.iconn-field .form-control {
    padding-right: 50px;
}

.iconn-field button {
    position: absolute;
    right: 24px;
    bottom: 9px;
    background: transparent;
    border: none;
    padding: 0;
    font-size: 20px;
    color: #0C3485;
}

.forgotwrap {display: flex;justify-content: space-between;align-items: center;margin-bottom: 15px;}

.forgotwrap a {
    color: #949494;
}

.forgotwrap .form-check label {
    color: #949494;
}

.orwrap {
    text-align: center;
    margin-top: 40px;
}

.orwrap p {
    font-weight: 600;
}

.orwrap .social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.orwrap .social a {
    border-radius: 10px;
    border: 0.5px solid #0C3485;
    background: #DBEFFF;
    padding: 10px 20px;
    color: #0C3485;
    font-weight: 500;
}

.orwrap .social a i {
    margin-right: 6px;
}

.orwrap .social a i:before {
    color: #0C3485;
}

@media (max-width: 991px) {
    .form-wrapper {
        display: block;
        padding: 15px 0px;
    }
    
    .form-wrapper .left {
        display: none;
    }
    
    .form-wrapper .right {
        width: 100%;
        margin: 0;
    }
    .form-wrapper .title {
        font-size: 36px;
    }
    .form-control {
        padding: 8px 16px;
    }
    .orwrap {
        margin-top: 20px;
    }
    .iconn-field button {
        bottom: 5px;
    }
}