/* new login screen  */


@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');


body {
    font-family: "Inter", sans-serif !important;
}

/* header and footer  */
header,
footer {
    display: none;
}

/* header and footer  */

/* Login Page  */
.login-section {
    height: 100vh;
}

.login-box {
    max-width: 400px;
    width: 100%;
}

.register-box {
    max-width: 600px;
    width: 100%;
    height: 100%;
}

.left__side__section {
    max-height: 100%;
    overflow-y: auto;
    scroll-behavior: smooth;
    padding: 80px 0;
}

/* Prevent double scrollbars on small screens */
@media (max-width: 600px) {
    .left__side__section {
        max-height: none;
        overflow-y: visible;
        padding: 40px 15px;
    }
}

input.form-control,
select.form-control {
    border: 1px solid #ddd;
    border-radius: 0 10px 10px 0;
    padding: 10px 20px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.form-control:focus {
    box-shadow: none;
    border-left: 1px solid #dddddd;
    border-color: #9d9d9d;
}

.btn-custom {
    background-color: #2f4858;
    color: #fff;
    padding: 10px 20px !important;
    text-transform: uppercase;
    border-radius: 25px;
}

.btn-custom:hover {
    background-color: #1f2f3a;
    color: #fff;
}

.btn-highlight {
    background-color: #cddc39;
    color: #000;
    padding: 10px 20px !important;
    text-transform: uppercase;
    border-radius: 25px;
}

.btn-highlight:hover {
    background-color: #aebf2d;
    color: #000;
}

.paragraph-description {
    font-size: 0.85rem;
    color: #666;
    margin-top: 15px;
}

.illustration {
    background: url("https://raw.githubusercontent.com/emnatkins/cdn-codepen/main/money-locker.jpg") no-repeat center;
    /*background: url("https://as2.ftcdn.net/v2/jpg/04/60/71/01/1000_F_460710131_YkD6NsivdyYsHupNvO3Y8MPEwxTAhORh.jpg") no-repeat center;*/
    /*background: url("https://img.freepik.com/free-vector/data-security-technology-template-with-shield-icon_53876-119540.jpg") no-repeat center;*/
    background-size: cover;
    height: 100%;
}

/* Add this CSS to your auth-second.css file */
.input-group.is-invalid .form-control,
.input-group.is-invalid .input-group-text {
    border-color: #dc3545;
    /* Bootstrap's red for errors */
}

.input-group.is-valid .form-control,
.input-group.is-valid .input-group-text {
    border-color: #198754;
    /* Bootstrap's green for success */
}

.icon-continue {
    fill: #2abe88;
    width: 15px;
    height: 15px;
    position: absolute;
    right: 0;
    top: 15px;
    right: 10px;
}

/* .form-check-input:checked+.form-check-label {
    background-color: #c4d10136;
    color: #000;
    padding: 5px 15px;
    font-size: 16px;
    border-radius: 0;
    cursor: pointer;
} */

.form-check.form-check-inline {
    display: flex;
    justify-content: center;
    gap: 15px;
    cursor: pointer;
}

.form-check-label {
    cursor: pointer;
}


.input-group.is-invalid .select2-selection.select2-selection--single {
    border: 1px solid red !important;
}

.input-group:not(.has-validation)>.dropdown-toggle:nth-last-child(n+3),
.input-group:not(.has-validation)>.form-floating:not(:last-child)>.form-control,
.input-group:not(.has-validation)>.form-floating:not(:last-child)>.form-select,
.input-group:not(.has-validation)> :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-radius: 0;
}

.select2-container--bootstrap-5.select2-container--focus .select2-selection,
.select2-container--bootstrap-5.select2-container--open .select2-selection {
    border-color: #2f485859 !important;
    box-shadow: unset;
}

.select2-container--bootstrap-5 .select2-dropdown.select2-dropdown--below,
.select2-container--bootstrap-5 .select2-dropdown.select2-dropdown--above {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border: 1px solid #2f485859;
    border-top: 0px solid transparent;
}

.select2-container--bootstrap-5 .select2-dropdown .select2-search .select2-search__field:focus {
    border-color: #2f485859;
    box-shadow: unset;
}

.back_to_home {
	color: #2f4858;
	font-size: 15px;
	font-weight: 600;
}
.back_to_home:hover {
text-decoration: underline;
}

/* Login Page  */