:root {
    --primary: #3769A4;
    --primary-lite: rgba(63, 140, 255, 0.107);
    --secondary: #7D8592;
    --danger: #A20E30;
    --success: #0AC947;
    --warning: #FFC327;
    --bs-link-color: #3769A4;
    --background: #F4F9FD;
    --card-shadow: 0px 6px 58px 0px #C4CBD61A;
}

body {
    font-family: 'Nunito Sans', sans-serif;
    background-color: var(--background);
}

.main-content {
    background-color: #F4F9FD;
}

.auth-content {
    padding:26px; 
    height:100vh; 
    border-radius: 14px; 
    border-width: 1px;
}

.auth-content-row {
    height: calc(100vh - 52px);
}

.title-left {
    font-weight: 700;
    font-size: 36px;
    line-height: 56px;
    letter-spacing: 0px;
    text-align: center;

}

.title-right {
    font-weight: 700;
    font-size: 22px;
    line-height: 100%;
    letter-spacing: 0px;
    text-align: center;
    color: #089A49 !important;
}

.form-label {
    font-weight: 700;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0px;
    color: #7D8592 !important;
    margin-bottom: 7px;
    padding-left: 6px;
}

.clr-red {
    color: red !important;
}

.btn {
    border-radius: 14px;
    box-shadow: 0px 6px 12px 0px rgba(63, 140, 255, 0.26);
    padding: 12px 18px;
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0px;
}

.form-control {
    border-radius: 14px;
    border-width: 1px;
    border: 1px solid #D8E0F0;
    background: #FFFFFF;
    box-shadow: 0px 1px 2px 0px #B8C8E039;
    padding: 11px 18px;
}


.form-control::-moz-placeholder {
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0px;
    color: #7D8592;
}

.form-control::placeholder {
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0px;
    color: #7D8592;
}


.custom-checkbox {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #0A1629;
    border-radius: 6px;
    cursor: pointer;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    margin-right: 8px;
    transition: background-color 0.2s, border-color 0.2s;
}

.custom-checkbox:checked {
    border-color: #0A1629;
}

.custom-checkbox:checked::after {
    content: '';
    position: absolute;
    left: 4px;
    top: 1px;
    width: 8px;
    height: 12px;
    border: solid #3F8CFF;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* Label Styling */
.custom-checkbox-label {
    color: #7D8592;
    cursor: pointer;
    user-select: none;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0px;

}
.link-text {
    color: #7D8592;
    cursor: pointer;
    user-select: none;
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0px;
    transition: color 0.3s ease;
    text-decoration: none;
}

.link-text:hover,
.link-text:active {
    color: var(--primary);
}


.left-side-content {
    /* width: 50%; */
    padding: 45px;
    border-top-left-radius: 14px;
    border-bottom-left-radius: 14px;
    background-color: #2C7DB4;
    height: calc(100vh - 52px);
}

.right-side-content {
    /* width: 50%; */
    /* padding: 132px; */
    background-color: white;
    height: calc(100vh - 52px);
    border-top-right-radius: 14px;
    border-bottom-right-radius: 14px;
}

@media (max-width: 766px) {
    .left-side-content {
        display: none !important;
    }
    .right-side-content {
        border-top-left-radius: 14px;
        border-bottom-left-radius: 14px;
    }
}

.bi {
    font-size: 20px;
    padding: 3px;
}