
/*-- Font Family Manrope --*/
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');

/*-- Typography --*/
*, ::after, ::before {
    box-sizing: border-box;
    margin: 0;
}

:root {
    --base-font-color: #171A21;
    --base-font-size: 13px;
    --blue-theme-color: #143A72;
    --Pink-theme-color: #F27930;
    --primary-font-family: 'Manrope', sans-serif;    
}

body {
    font-family: var(--primary-font-family);
    font-size: var(--base-font-size);
    line-height: 24px;
    color: var(--base-font-color);
    -webkit-font-smoothing: antialiased;
    background: #f5f6fa;
}

a, a:focus {
    text-decoration: none;
    color: var(--link-color);
    transition: all ease 0.5s;
}

a:hover {
    color: var(--orange-theme-color);
    text-decoration: none;
}

img {
    max-width: 100%;
}

ul, ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

p {
    margin: 0 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 300;
    margin: 10px;
}

h1 {
	color: #fff;
    font-size: 22px;
    font-weight: 700;
    line-height: 40px;
    letter-spacing: -0.0035em;
}

h2 {
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
    letter-spacing: -0.0035em;
}

h3 {
    font-size: 14px;
    line-height: 22px;
    margin: 0 0 20px;
}


h4 {
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: -0.0035em;
}

button.grey {
    background: #EEEEEF;
    padding: 10px 24px 10px 24px;
    border-radius: 100px;
    opacity: 0px;
}

button.cstm-btn, input.proceed-btn{
    padding: 10px 24px 10px 24px;
    border-radius: 100px;
    border: none;
    background: var(--orange-theme-color);
    width: 100%;
    min-width: 200px;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: -0.0035em;
    color: #fff;
    text-align: center;
    margin: 20px 0 10px;
}

/*-- CheckBox Style --*/

.checkbox {
    display: block;
    position: relative;
    padding-left: 22px;
    margin: 5px 0;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    color: #231f20;
}

.checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkbox span {
    position: absolute;
    top: 1px;
    left: 0px;
    border-radius: 3px;
    height: 18px;
    width: 18px;
    border: 1px solid rgba(35, 31, 32, .5);
}

.checkbox input:checked~span {
    border: 1px solid #3597EC;
}

.checkbox input:checked~span {
    background: #3597EC;
}

.checkbox input:checked~span:after {
    display: block;
}

.checkbox span:after {
    content: "";
    position: absolute;
    display: none;
    left: 5px;
    top: 1px;
    width: 6px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/*-- Radio Button Style --*/

.radio-sec.form-group label {
    border: 1px solid #A8ABB1;
    padding: 9px 16px 9px 50px;
    border-radius: 8px;
    color: #686868;
    margin: 0;
    text-align: left;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: -0.0035em;
    display: block;
}

.radio-sec.form-group input[type="radio"] {
    position: absolute;
    top: 0;
    left: 0;
    cursor: pointer;
    width: 100%;
    opacity: 0;
    height: 100%;
    z-index: 99;
}

.radio-sec.form-group {
    width: auto;
    margin: 0;
}

.radio-sec.form-group input[type="radio"]:checked~label {
    border-color: #3597EC;
    color: #000;
    position: relative;
    background:#EBF5FD;
}

.radio-sec.form-group label:after {
    position: absolute;
    content: "";
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background:#fff;
    border: 1.5px solid #505662;
    top: 11px;
    left: 15px;
}

.radio-sec.form-group input[type="radio"]:checked~label:after {
    left: 14px;
    top: 10px;
    border: 5px solid #3597EC;
}

button.cstm-btn.disabled, input.proceed-btn.disabled {
    background: #97144D;
    color: #fff;
}

/*-- Modal Style --*/
.modal button.btn-close {
    position: absolute;
    right: 20px;
}

.modal .modal-txt {
    margin: 20px 0 0;
    border-bottom: 1px solid #EEEEEF;
    padding-bottom: 20px;
}

.modal .modal-txt p {
    margin: 0 0 5px;
    font-size: 15px;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: -0.0035em;
}

.modal .modal-txt:last-child {
    border-bottom: 0;
}

.modal .modal-txt p.undrline a {
    position: relative;
    display: inline-block;
    color: #171A21;
}

.modal .modal-txt p.undrline a:after {
    content: "";
    display: block;
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 1px;
    background: #171A21;
}


/*-- Datepicker */
.cstm-datepicker input.datepicker {
    position: relative;
    z-index: 10;
    background: none;
    cursor: pointer;
}

.datepicker.datepicker-dropdown {
    font-size: 12px;
    padding: 10px;
}

/*-- Header --*/
header {
    background: #fff;
    box-shadow: 0px 4px 20px 0px #5056621A;
    padding: 2px 0;
    position: fixed;
    z-index: 10;
    width: 100%;
    top: 0;
}

.logo a {
    display: inline-block;
}

.logo a img {
   height: 50px;
}

.main-content {
    padding-top: 80px;
}


/* .cstm-fixed-sec {
    position: fixed;
    min-height: 82vh;
    width: 30vw;
} */

.login-form button.cstm-btn, input.proceed-btn {
    margin: 40px auto 0;
    width: auto;
    display: block;
}

.cstm-tbs .bg-tabs {
    background: #fff;
    padding: 10px 20px;
    position: absolute;
    min-height: auto;
    left: 50%;
    top: 55%;
    transform: translate(-50%, -50%);
    min-width: 450px;
    max-width: 450px;
    border-radius: 10px;
	box-shadow: rgba(0,0,0,0.24)0px 3px 8px;
}

.cstm-tbs .bg-tabs .sso-login h1 {
    text-align: center;
    padding: 5px 0;
    font-size: 15px;
    line-height: 30px;
    margin: 10px 0 0;
   color: #010101;
}

.cstm-tbs .bg-tabs p button {
    padding: 4px 8px;
    border-radius: 4px;
    background: #E8EBF1;
    border: none;
    font-size: 13px;
    font-weight: 500;
    line-height: 18.2px;
}

.cstm-tbs .bg-tabs p {
    text-align: center;
    margin: 0;
}

.cstm-tbs ul li button.nav-link.active {
    background: none;
    color: #3597EC;
    font-weight: 700;
    position: relative;
}

.cstm-tbs ul li button.nav-link.active:after {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    position: absolute;
    background: #3597EC;
    transition: all ease 0.5s;
    left: 0;
    bottom: -2px;
}

.cstm-tbs ul li button.nav-link.active svg path {
    fill: #3597EC;
}

.cstm-tbs ul li:last-child button.nav-link.active svg path {
    stroke: #3597EC;
    fill: none;
}

.cstm-tbs ul.nav-pills {
    border-bottom: 1px solid #DCDDE0;
    position: relative;
    margin-bottom: 10px !important;
}

.cstm-tbs ul.nav-pills li.nav-item {
    width: 50%;
}

.cstm-tbs ul li button.nav-link {
    width: 100%;
    padding: 10px;
    color: #A8abb1;
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: -0.0035em;
    text-align: center;
    height: 40px;
}
.cstm-tbs ul li button.nav-link .coming-soon {
  position: absolute;
  bottom: 32px; /* Space from the bottom */
  font-weight: 700;
  right: 55px;  /* Space from the right */
  font-size: 7px; /* Smaller font for the text */
  color: #6a584c;
  background: #f1f1f1;
  border-radius: 6px;
  padding: 0px 4px;
}

.cstm-tbs ul li button.nav-link svg {
    margin-right: 6px;
    position: relative;
    top: -2px;
   color: #A8abb1;
}

.cstm-tbs form.login-form .form-floating input {
    padding: 10px 10px 0 12px;
    border-radius: 8px;
    border: 1px solid #A8ABB1;
    height: calc(3rem);
    font-size: 13px;
}

.form-floating>label {
    padding: 7px 12px;
}

.cstm-tbs form.login-form {
    padding: 10px 20px;
}

.cstm-tbs form.login-form .form-floating {
    position: relative;
}

.cstm-tbs form.login-form .form-floating .pass-icon {
    position: absolute;
    top: 17px;
    right: 15px;
    z-index: 1;
    cursor: pointer;
}

.login-form .form-group {
    position: relative;
}

.login-form .form-group {
    justify-content: space-between; /* Position links on left and right */
    align-items: center; /* Align links vertically */
    position: relative; /* Ensure flex children respect positioning within the group */
}

.login-form .form-group > a {
    color: #424752;
    font-size: 12px;
    font-weight: 700;
    line-height: 18px;
    letter-spacing: -0.0035em;
    text-decoration: none; /* Optional: Remove default underline */
    position: relative; /* Necessary for decorative underline (pseudo-element) */
    margin: 0; /* Reset margins if they exist in the current CSS */
}


.login-form .form-group > a:after {
    content: "";
    display: block;
    background: #424752;
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 1px;
}

.login-form .form-check {
    padding: 0;
}

.form-check .checkbox p {
    font-size: 14px;
    cursor: pointer;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: -0.0035em;
    text-align: left;
    color: #505662;
    margin-left: 5px;
    position: relative;
    top: -1px;
}

/* .bottom-txt {
    text-align: center;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 30px;
} */

.bottom-txt {
    text-align: center;
    position: relative;
    bottom: 0;
    padding:0 0 10px;
}

.bottom-txt p {
    font-size: 11px;
    font-weight: 700;
    line-height: 16px;
    letter-spacing: -0.0035em;
    display: inline-block;
    position: relative;
}

.bottom-txt p a {
    display: inline-block;
}

.bottom-txt p:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    width:100%;
    background: var(--base-font-color);
    bottom: -3px;
    transition: all ease 0.5s;
}

.bottom-txt p:hover:after {
    background: #E51264;
}

/*-- Right Section Awards --*/
.cstm-awrds-sec h1 img {
    max-width: 50px;
    position: relative;
    top: -5px;
}

.cstm-right-sec {
    padding: 30px 15px;
}

.cstm-awrds-sec {
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 4px 20px 0px #5056621A;
}

.cstm-awrds-sec h1 {
    color: var(--blue-theme-color);
    margin-bottom: 10px;
}

.owl-stage {
    left: -50px;
}

.cstm-slide-sec {
    padding: 10px;
    border: 2px solid #DEA806;
    border-radius: 10px;
}

.cstm-slide-sec p {
    margin: 0;
}
.cstm-slide-sec p:last-child {
    font-size: 14px;
    font-weight: 500;
    line-height: 19.6px;
    letter-spacing: -0.0035em;
    text-align: center;
    margin: 15px 0 5px;
}


.cstm-awrds-sec .owl-carousel {
    position: relative;
}

.cstm-awrds-sec .owl-carousel button {
    position: absolute;
    top: 0;
    bottom: 0;
}

.cstm-awrds-sec .owl-carousel button.owl-next {
    right: 18px;
}

.cstm-awrds-sec .owl-carousel button.disabled {
    display: none;
}

.cstm-awrds-sec .owl-carousel button span {
    display: inline-block;
    font-size: 36px;
    line-height: 40px;
    position: relative;
    z-index: 10;
    left: 8px;
}

.cstm-awrds-sec .owl-carousel button.owl-next span {
    left: auto;
    right: -8px;
}

.cstm-awrds-sec .owl-dots {
    display: none;
}

.cstm-awrds-sec .owl-carousel button:after {
    content: "";
    width: 40px;
    background: #fff;
    height: 100%;
    z-index: 1;
    position: absolute;
    top: 0;
    opacity: 0.7;
    left: 0;
    right: auto;
}

.cstm-awrds-sec .owl-carousel button.owl-next:after {
    right: 0;
}

.cstm-midcap-sec {
    padding: 16px;
    background: linear-gradient(45deg, #252931 -12.5%, #505662 112.5%);
    margin: 20px 0;
    border-radius: 10px;
}

.cstm-sec-one p.img-sec {
    position: absolute;
    padding: 8px;
    border-radius: 50%;
    background: #fff;
    margin: 0;
}

.cstm-sec-one {
    position: relative;
}

.cstm-sec-one p.img-sec img {
    max-width: 40px;
    display: inline-block;
    position: relative;
    top: -1px;
    left: 4px;
}

.cstm-sec-one p {
    margin: 0 0 0 75px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: -0.0035em;
}

.cstm-sec-one p span {
    display: block;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: -0.0035em;
    margin-bottom: 8px;
}

button.cstm-rtrn-btn {
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: -0.0035em;
    background: #E6F5ED;
    color: #099A4F;
    display: inline-block;
    border: none;
    margin: 0 0 3px;
}

.cstm-return-sec p {
    color: #fff;
    font-size: 13px;
    line-height: 18.2px;
    margin: 0;
    letter-spacing: -0.0035em;
}

.cstm-midcap-sec button.cstm-btn {
    margin: 0;
    position: relative;
    top: 3px;
    min-width: auto;
}

/*-- Upcoming-podcast --*/
.cstm-podcast-sec {
    background: #fff;
    padding: 16px;
    border: 1px solid #EEEEEF;
    box-shadow: 0px 4px 20px 0px #5056621A;
    border-radius: 10px;
    position: relative;
}

.cstm-podcast-sec > h1 {
    color: var(--blue-theme-color);
}

.cstm-podcast-sec h1 img {
    display: inline-block;
    position: relative;
    top: -4px;
    margin-right: -10px;
}

.cstm-podcast-sec {
    background: #fff;
    padding: 16px;
    border: 1px solid #EEEEEF;
    box-shadow: 0px 4px 20px 0px #5056621A;
    border-radius: 10px;
}

ul.cstm-pdcst-details {
    background: #F5F6FA;
    padding: 6px 10px;
    margin: 0;
    border-radius: 4px;
    position: absolute;
    top: 23px;
    right: 16px;
}

ul.cstm-pdcst-details li {
    display: inline-block;
    padding: 0 15px 0 10px;
    position: relative;
}

ul.cstm-pdcst-details li:last-child {
    padding-right: 10px;
}

ul.cstm-pdcst-details li:after {
    content: "|";
    position: absolute;
    right: 0;
}

ul.cstm-pdcst-details li:last-child::after{
    display: none;
}

.podcast-people span.img-pocst-container {
    display: inline-block;
    max-width: 52px;
    border-radius: 100%;
    overflow: hidden;
}

.podcast-people p, .podcast-people h3 {
    margin: 0;
}

.podcast-people h3 {
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: -0.0035em;
}

.cstm-podcast-sec .col-sm-3 h1 {
    padding-right: 30px;
    position: relative;
    top: 7px;
}

/*-- Without Password Flow 1 SSO --*/
.bg-tabs .cstm-without-pass-flow p {
    margin: 0;
    text-align: left;
}

.cstm-without-pass-flow ul li {
    padding: 15px 0;
    border-bottom: 1px solid #EEEEEF;
}

.cstm-without-pass-flow ul li:first-child {
    padding-top: 8px;
}

.bg-tabs .cstm-without-pass-flow h3 {
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: -0.0035em;
}

.bg-tabs .cstm-without-pass-flow .txt {
    position: relative;
}

.bg-tabs .cstm-without-pass-flow .txt .cstm-link {
    position: absolute;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: -0.0035em;
    color: var(--orange-theme-color);
    top: 0;
    right: 0;
}

/*-- Forgot Password --*/

.cstm-tbs.cstm-reset-pass .bg-tabs {
    left: 0;
    top: 110px;
    max-width: 500px;
    min-width: auto;
    margin: 0 auto;
    right: 0;
    transform: none;
}

.cstm-tbs.cstm-frgt-pass .bg-tabs h1,
.cstm-tbs.cstm-frgt-pass .bg-tabs p {
    text-align: left;
}

.cstm-tbs.cstm-frgt-pass .bg-tabs p {
    margin: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: -0.0035em;
}

.cstm-tbs .bg-tabs p button.cstm-btn.line-btn {
    background: none;
    border: 1px solid #CBCCD0;
    display: inline-block;
    width: auto;
    padding: 10px 16px;
    color: #343842;
    margin: 15px 0;
    border-radius: 100px;
}

.cstm-radio-btn .form-group:first-of-type label {
    border-radius: 8px 8px 0 0;
}

.cstm-radio-btn .form-group:last-child label {
    border-radius: 0 0 8px 8px;
}

.cstm-frgt-pass .cstm-fixed-sec {
    max-width: 400px;
    margin: 0 auto;
}

.cstm-frgt-pass form.login-form {
    padding: 10px 0;
}

.login-form h3 {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: -0.0035em;
    margin: 0 0 10px;
}

.cstm-radio-btn {
    margin: 0 0 40px;
}

.cstm-frgt-pass .cstm-lbl label {
    font-size: 13px;
    line-height: 18.2px;
    letter-spacing: -0.0035em;
    color:  #505662;
}

.cstm-radio-btn {
    margin: 0 0 20px;
}

.cstm-frgt-pass .cstm-lbl label {
    font-size: 13px;
    line-height: 18.2px;
    letter-spacing: -0.0035em;
    color:  #505662;
}

.cstm-equation-box {
    border-radius: 8px;
    background: #EEEEEF;
    padding: 8px 12px;
    text-align: right;
    position: relative;
    margin-top: 8px;
}

.cstm-tbs .bg-tabs .cstm-equation-box > p {
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.0035em;
    color: #505662;
    position: absolute;
    text-align: left;
    left: 16px;
    top: 15px;
}

.numric-txt {
    display: inline-block;
    font-size: 17px;
    line-height: 23px;
    letter-spacing: -0.0035em;
}

.numric-txt .inpt-rslt {
    max-width: 60px;
    display: inline-block;
}

.cstm-frgt-pass button.cstm-btn {
    margin: 20px auto 0;
    width: auto;
    display: block;
}

/*-- Verify OTP --*/

.cstm-frgt-pass .bck-frgt-pass a {
    text-decoration: none;
    position: relative;
    top: 0;
}

.cstm-frgt-pass .bck-frgt-pass {
    display: inline-block;
    margin-top: 15px;
}

.cstm-frgt-pass p.otp-recv-sec {
    font-size: 14px;
    color: #252931;
}

.cstm-frgt-pass p.otp-recv-sec span {
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    letter-spacing: -0.0035em;
    padding-left: 6px;
    color: #A8ABB1;
}

.cstm-frgt-pass p.otp-recv-sec span.timer {
    color: #099A4F;
}

.inpt-icn {
    position: absolute;
    right: 15px;
    top: 15px;
}

/*-- Reset Password --*/
.reset-pass .form-group button {
    min-width: 185px;
    margin-top: 20px;
}

.reset-pass .form-group button:first-of-type {
    margin-top: 40px;
}

.cstm-prog-bar {
    padding: 15px 0 0;
}

.cstm-prog-bar .progress {
    height: 5px;
    margin-bottom: 20px;
    border-radius: 25px;
}

.cstm-prog-bar li {
    padding: 0 0 6px 16px;
    font-size: 13px;
    font-weight: 400;
    line-height: 18.2px;
    letter-spacing: -0.0035em;
    position: relative;
    color: #969AA1;
    transition: all ease 0.5s;
}

.cstm-prog-bar li:after {
    content: "";
    background: #D9D9D9;
    width: 8px;
    height: 8px;
    display: block;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 5px;
    transition: all ease 0.5s;
}

.cstm-prog-bar li.done {
    color: #099A4F;
}

.cstm-prog-bar li.done:after {
    background: none;
    content: "\2713";
    font-size: 15px;
    line-height: 20px;
    top: -1px;
    transform: rotate(10deg);
}

/*-- New Code --*/

.login-hover-btn:hover{
    color: #fff;
    transition: all ease 0.5s;
}

.login-error {
    font-weight: bold;
    margin-top: 70px;
}

.img-band{
    max-width: 60%;
    height: auto;
    margin: 0 auto;
}

.sso-login{
    max-width: 100%;
    /* height: 50px; */
    margin: 0 auto;
    text-align: center;
    margin-bottom: 8px;
    border-radius:10px;
}

.cstm-input:focus{
    box-shadow: 0 0 0 .15rem rgba(13, 110, 253, .25) !important;
}


.cstm-wrng {

    position: absolute;
    bottom: 0;
    left: 0;
    background: #fff;
    padding: 5px;
    border-radius: 5px;
    box-shadow: rgba(0,0,0,0.24)0px 3px 8px;
    font-size: 12px;
    letter-spacing: 0.2px;
}

/*-- Responsive --*/

@media(max-width: 1199px) {
    .cstm-tbs .bg-tabs {
        min-height: auto;
    }    
}

@media(max-width: 768px) {
    .bottom-txt {
        position: relative;
        bottom: 0;
        margin: 0 0 10px;
    }

    .main-content {
        padding-top: 20px;
    }

    .cstm-tbs .bg-tabs {
        position: relative;
        min-height: auto;
        left: 0;
        top: 0;
        transform: none;
        min-width: 400px;
        max-width: 400px;
        right: 0;
        margin: 0 auto;
    }

    .bottom-txt {
        margin: 0;
    }

    .cstm-tbs form.login-form {
        padding: 5px 20px;
    }

    .cstm-tbs .bg-tabs .sso-login h1 {
        padding: 5px 0;
        font-size: 13px;
        line-height: 25px;
        margin: 5px 0 0;
    }
    
    .login-form button.cstm-btn, input.proceed-btn {
        margin: 35px auto 0;
    }
    
    button.cstm-btn, input.proceed-btn {
        padding: 5px 15px;
        font-size: 13px;
        line-height: 20px;
        margin: 20px 0 10px;
    }

    .img-band {
        max-width: 80%;
    }

}
/* 
@media(max-width: 520px){
    .cstm-tbs .bg-tabs {
        max-width: 400px;
        min-width: 420px; 
    }

    .login-error {
        margin-top: 20px;
    }

    .main-content {
        padding-top: 0;
    }

} */

@media(max-width: 450px) {
    .cstm-tbs .bg-tabs {
        position: relative;
        top: 0;
        left: 0;
        max-width: 100%;
        padding: 10px;
        min-width: auto;
    }
    
    .cstm-tbs ul li button.nav-link {
  font-size: 1px;
  line-height: 18px;
  height: 40px;
  padding: 10px 2px;
  position: relative; /* Add relative positioning to the button */
  color: #A8ABB1;
}

.cstm-tbs ul li button.nav-link svg {
  width: 17px;
}



    
    .cstm-tbs .bg-tabs h1 {
        padding: 5px 0 10px;
        font-size: 15px;
    }
    
    .cstm-tbs .bg-tabs p button {
        font-size: 12px;
    }

    .form-check .checkbox p {
        font-size: 12px;
        margin-left: 2px;
        top: 2px;
    }

    .login-form .form-group > a {
        font-size: 11px;
        top: -9px;
        right: 0;
    }

    .cstm-tbs.cstm-frgt-pass .bg-tabs {
        top: 20px;
    }

    .cstm-tbs.cstm-frgt-pass .bg-tabs p {
        font-size: 12px;
        line-height: 17px;
    }

    .cstm-tbs .bg-tabs p button.cstm-btn.line-btn {
        padding: 8px 20px;
        margin: 10px 0;
        min-width: auto;
    }

    .login-form h3 {
        font-size: 13px;
        line-height: 18px;
        margin: 0 0 5px;
    }

    .radio-sec.form-group label {
        padding: 9px 16px 9px 35px;
        font-size: 12px;
        line-height: 18px;
    }

    .radio-sec.form-group label:after {
        width: 15px;
        height: 15px;
        top: 11px;
        left: 15px;
    }
    
    .radio-sec.form-group input[type="radio"]:checked~label:after {
        border: 3px solid #3597EC;
    }

    .bg-tabs .cstm-without-pass-flow .txt .cstm-link {
        position: relative;
        font-size: 13px;
    }
    
    without-pass-flow h3 {
        font-size: 13px;
        line-height: 17px;
    }
    
    .cstm-without-pass-flow ul li {
        padding: 15px 0 10px 0;
    }
}
