body {
    background-color: #f5f6fb;
    color: #33343E;
    font-family: Inter, sans-serif;
}

h4 {
    font-size: 20px;
    font-weight: bold;
}

label,
input,
input::placeholder,
select::placeholder,
textarea::placeholder,
p,
button {
    font-size: 14px;
    color: #33343E;
}

input.form-control, 
select.form-control, 
textarea.form-control {
    border-radius: 6px;
    height: 48px;
    font-size: 14px;;
}

.btn.disabled,
.btn:disabled,
fieldset:disabled .btn {
    background-color: #CCCDE8;
    border-color: #CCCDE8;
}

a.btn {
    padding-top: 11px;
}

.btn-primary {
    /* color: #3134c2; */
    background-color: #1D20BC;
}

.btn-outline-secondary {
    border-color: #CCCDE8;
}

/* Remove the focus outline and box-shadow */
input:focus,
textarea:focus,
select:focus {
    outline: none !important;
    /* Remove the outline */
    box-shadow: none !important;
    /* Remove the box-shadow */
    border-color: #dee2e6 !important;
}

.required {
    color: #DC2626;
    font-weight: bold;
}
.text-error {
    color: #DC2626;
    font-size: 14px;
}
.error, 
.field-error {
    display: block;
    color: #DC2626;
    font-size: 12px;
    transition: margin-top 0.2s ease;
}
.error:not(:empty), 
.field-error:not(:empty) {
    margin-bottom: -8px;
    padding-top: 4px;
}

.container {
    max-width: 1065px;
}

/* Tùy chỉnh logo */
.navbar-brand img {
    height: 40px;
}

.nav-link-home {
    color: #1D20BC !important;
    font-weight: bold;
}

.register-card {
    margin: 50px auto;
    margin-top: 0;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    background: #fff;
    overflow: hidden;
    min-height: 700px;
}

.register-left {
    background: #fff;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 767.98px) {
    .register-left {
        display: none !important;
    }
}

.register-left img {
    max-width: 100%;
    height: auto;
}

.right-content {
    width: 370px; 
    margin: auto;
}

.register-right {
    padding: 2rem 3rem;
}
.register-right .text-14 {
    font-size: 14px;;
}

.register-right .captcha-wrapper {
    display: flex;
    justify-content: center;
}

.btn-submit {
    height: 48px;
    margin-top: 10px;
}

input[type="checkbox"]:checked {
    background-color: #1D20BC;
    border-color: #1D20BC;
}

.form-label {
    font-weight: 600;
}

a {
    font-family: Caption, Caption Regular, sans-serif;
    text-decoration: none;
    color: #2563EB;
}

a.disabled {
    color: #B6BCC1;
}

.navbar-light .bi-home {
    color: #33343E;
}


.divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

.divider hr {
    flex: 1;
    border: 1px solid #8B8C99;
}

.divider .text-center {
    margin: 0 10px;
    color: #8B8C99;
    /* Light color for text */
}

.no-border-left {
    border-left: none;
}

.no-border-right {
    border-right: none;
}

.bg-light {
    background-color: #f5f6fb !important;
}


/***************************************************************
 * Password
 ***************************************************************/
.input-group .toggle-password {
    color: #2563EB;
    /* border-left: none; */
    font-size: 14px;
    font-family: Inter, sans-serif;
}

.input-group .toggle-password:hover {
    background-color: #ffffff;
    border-color: #CCCDE8;
    /* color: #2563EB; */
}

/***************************************************************
 * OTP
 ***************************************************************/
.otp-inputs {
    display: flex;
    max-width_: 300px;
    gap: 8px;
    /* khoảng cách giữa ô */
    margin: 0 auto;
    /* Thêm căn giữa ngang */
}

.otp-input {
    width: 55px;
    height: 55px;
    font-size: 24px;
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 6px;
    outline: none;
    transition: border-color 0.3s;
    flex: 1 1 0;
    /* mỗi ô chiếm bằng nhau, co dãn đều */
}

.otp-input:focus {
    border-color: #3134c2;
    box-shadow: 0 0 5px #3134c2;
}



/***************************************************************
 * Custom tooltip
 ***************************************************************/
.tooltip {
    --bs-tooltip-max-width: 350px;
}

.tooltip-inner {
    white-space: pre-line;
    /* Cho phép xuống dòng theo \n */
    text-align: left;
    /* Optional */
}