/* Font Family */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Noto Sans";
}

:root {
    --primary-color: #27963C;
    --secondary-color: #2C3792;
    --black-color: #000000;
    --white-color: #fff;
    --gray-color: #52556D;
    --secondary-Light: #F3F4FE;
    --gray-btn-color: #E4E4E4;
    --heading-color: #040510;
    --placeholder-color: #9093B2;

}

.btn-check:focus+.btn,
.btn:focus {
    box-shadow: none !important;
}

.form-control.custom-input {
    background-color: var(--secondary-Light);
    border: transparent;
    border-radius: 10px;
    height: 50px;
    color: var(--black-color);
}

::placeholder {
    color: var(--placeholder-color) !important;
}

.form-control.custom-input:focus {
    box-shadow: none;
    border: 1px solid var(--secondary-color);
}

select.custom-select:focus {
    border: 1px solid var(--secondary-color);
    outline: 0;
    box-shadow: none;
    background-color: var(--secondary-Light);
}

body {
    height: 100vh;
}

/* Login Page CSS */

/* Left section CSS */
.main-wrapper {
    position: relative;
    height: 100%;
}

img.bg-pattern {
    position: absolute;
    left: 0;
    top: 0;
    max-width: 440px;
    z-index: 0;
}

.login-page .logo-section,
.register-page .logo-section {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.logo-section img {
    max-width: 135px;
}

.login-page .left-section,
.register-page .left-section,
.change-password-page .left-section {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-title h2 {
    font-size: 30px;
    font-weight: 700;
    color: var(--heading-color);
}

.form-title p {
    color: var(--gray-color);
}

.input-field-box .input-icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 12px;
    max-height: 24px;
    color: var(--gray-color);
}

.login-formContainer {
    width: 100%;
    max-width: 550px;
}

.login-formContainer .custom-input,
.register-formContainer .custom-input {
    padding-left: 45px;
    padding-right: 45px;
}

.field-label {
    color: var(--gray-color);
    font-size: 14px;
    margin-bottom: 5px;
}

.loginForm,
.registerForm {
    margin-top: 50px;
}

.input-field-box .password-hideShow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 12px;
    max-height: 24px;
    color: var(--gray-color);
}

input[type=checkbox] {
    height: 18px;
    width: 18px;
}

input[type=checkbox]:checked {
    accent-color: var(--secondary-color);
}

.loginForm .rememberMe {
    display: flex;
    align-items: center;
    gap: 12px;
}

.loginForm .forgotLink {
    color: var(--secondary-color);
    font-size: 14px;
}

.primaryBtn {
    background: var(--primary-color);
    color: var(--white-color);
    border-radius: 10px;
    padding: 12px;
}

.primaryBtn:hover {
    color: var(--white-color);
    background: var(--primary-color);
}

.primaryOutline-btn {
    background: var(--white-color);
    color: var(--primary-color);
    border-radius: 10px;
    border: 1px solid var(--primary-color);
    padding: 12px;
}

.primaryOutline-btn:hover {
    background: #dbeedf;
    color: var(--primary-color);
}

.login-formContainer .createAccount-link {
    margin-top: 30px;
    text-align: center;
}

/* Banner Section CSS */
.banner-section {
    background: url("/static/images/banner-image.jpg");
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    clip-path: polygon(18% 0, 100% 0%, 100% 100%, 0% 100%);
}


/* Registration Page CSS */
.register-formContainer {
    width: 100%;
    max-width: calc(100% - 30%);
    padding: 3rem 0;
    margin: auto;
}

.register-page .banner-section {
    clip-path: unset;
    padding: 3rem 0;
    max-height: 100%;
    overflow-y: auto;
}

.custom-select {
    background-color: var(--secondary-Light);
    border: transparent;
    border-radius: 10px;
    height: 50px;
    color: var(--placeholder-color);
}

.custom-textarea {
    background-color: var(--secondary-Light);
    border: transparent;
    border-radius: 10px;
    color: var(--placeholder-color);
    resize: none;
}

.custom-textarea:focus {
    box-shadow: none;
    background-color: var(--secondary-Light);
    border: 1px solid var(--secondary-color);
}

.register-page .rightSection {
    position: fixed;
    height: 100%;
    top: 0;
    right: 0;
}

/* banner Card CSS */
.infocard-container {
    max-width: calc(100% - 12%);
    margin: auto;
}

.info-card {
    background: rgb(14 14 15 / 50%);
    border: 1px solid #E8E8E8;
    border-radius: 6px;
    padding: 20px;
}

.info-card .cardHeader {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid white;
    padding-bottom: 12px;
    margin-bottom: 12px;
}

.info-card .userInfo {
    display: flex;
    align-items: center;
    gap: 14px;
}

.info-card .name-badge {
    width: 50px;
    height: 50px;
    background: linear-gradient(140deg, #2C3792, #27963C);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #fff;
}

.info-card .name-badge h4 {
    font-size: 20px;
    font-weight: 600;
    color: white;
    margin: 0;
    letter-spacing: 1px;
}

.info-card .infoContent {
    color: var(--white-color);
    padding: 0 10px;
}

.info-card .infoContent .email-detail {
    border-right: 1px solid #dcdcdc91;
    padding-right: 10px;
}

.info-card .cardButtons button {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-card button.editBtn {
    background: #D2DCF3;
    border: 1px solid #4289F4;
    color: #2778F0;
}

.deleteBtn {
    background: #F3E6E6;
    border: 1px solid #F85959;
    color: #F83636;
}

.infoGroup label {
    font-size: 14px;
    font-weight: 600;
    color: white;
    margin-bottom: 0;
}

.infoGroup p {
    color: white;
}

form#mfaForm .mfa-option {
    display: flex;
    align-items: start;
    gap: 10px;
}

form#mfaForm .mfa-option input {
    margin-top: 6px;
}