@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");

* {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    transition: all 0.3s ease;
}

.mt-1 {
    margin-top: 8px;
}

.mt-2 {
    margin-top: 16px;
}

.mt-3 {
    margin-top: 24px;
}

.mt-4 {
    margin-top: 32px !important;
}

.mt-5 {
    margin-top: 40px !important;
}

.mr-1 {
    margin-right: 8px;
}

.mb-1 {
    margin-bottom: 8px;
}

.w-100 {
    width: 100%;
}

.text-center {
    text-align: center;
}

.default-msg-container {
    width: 100%;
    height: 100%;
    /* background-color: rgb(24 117 208 / 50%); */
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
}

.iidm-btn {
    background-color: #134c85;
    border-radius: 6px;
    padding: 12px 24px;
    border: none;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    line-height: 24px;
    font-weight: 600;
    color: #fff;
    outline: none;
}
.customer-btn {
    background-color: #fff;
    border-radius: 6px;
    padding: 12px 24px;
   
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    line-height: 24px;
    font-weight: 600;
    color: #134c85;
    outline: none;
    border: 1px solid #134c85;

}

.iidm-btn:hover, .customer-btn:hover {
    opacity: 0.95;
    box-shadow: 0px 2px 6px rgb(19 76 133 / 50%);
}


.iidm-btn.with-shadow {
    box-shadow: 2px 3px 5px rgb(0 0 0 / 12%), 0px 0px 1px 1px rgb(0 0 0 / 5%);
}

.iidm-btn.white-btn {
    background-color: #fff;
    border: 1px solid #e3eaf6;
    color: #4e586d;
}

.iidm-btn.white-btn.without-border {
    border: none;
}

.iidm-btn .btn-icon {
    margin-right: 8px;
}

.form-title-wrapper {
    margin: 0 0 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.form-title-wrapper h2.form-header {
    font-size: 24px;
    font-weight: 600;
    color: #2e374a;
    margin: 0;
}

.form-title-wrapper .form-header-caption {
    font-size: 14px;
    font-weight: 500;
    color: #8e99b2;
    margin: 8px 0 0;
}

.form-field-wrapper {
    display: flex;
    flex-direction: column;
    margin-bottom: 16px;
    position: relative;
}

.form-field-wrapper label {
    font-size: 14px;
    font-weight: 500;
    margin: 0 0 4px;
    color: rgba(109, 121, 146, 1);
}
.form-field-wrapper input:focus {
    border: 2px solid rgb(50 79 129);
}
.form-field-wrapper input {
    /* min-width: 320px; */
    background-color: #fff;
    border: 2px solid rgba(227, 234, 246, 1);
    border-radius: 4px;
    padding: 12px;
    font-size: 14px;
    font-weight: 500;
    color: #6d7992;
    height: 48px;
}

.form-field-wrapper input[type="password"] {
    padding-right: 42px;
}
.form-field-wrapper input[type="text"] {
    padding-right: 42px;
}

.form-field-wrapper input::placeholder {
    font-size: 14px;
    font-weight: 400;
    color: #8e99b2;
}

.form-error,
.form-success {
    display: block;
    font-size: 12px;
    font-weight: 500;
    margin-top: 4px;
}

.form-error {
    color: #e05d56;
}

.form-success {
    color: #518c37;
}

.form-fields .form-field-wrapper:not(:last-of-type) {
    margin-bottom: 24px;
}

form button[type="submit"] {
    margin-top: 24px;
}

.flex-wrapper1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.flex-wrapper {
    display: flex;
    align-items: end;
    padding-left: 40px;
    /* flex: 1; */
    transition: none;
    justify-content: center;
    overflow: hidden;
}
.logo-container2 {
    display: none;
}

.login-details {
    width: 100%;
    background: white;
    display: flex;
    box-sizing: border-box;
    padding: 0;
    justify-content: center;
    flex-direction: column;
    box-shadow: 0px 3px 5px rgb(0 0 0 / 10%), 0px 0px 1px rgb(0 0 0 / 20%);
    border-radius: 8px;
    transition: none;
}
.login-details.ng-leave {
    animation: none;
}
.flex-wrapper.justify-end {
    justify-content: flex-end;
}
.flex-wrapper.justify-space-between {
    justify-content: space-between;
    padding-left: 0;
}
.Button-class {
    display: flex;
    justify-content: center;
}
.checkbox {
    display: flex;
    align-items: center;
    padding-left: 28px;
    font-size: 14px;
    font-weight: 500;
    color: #6d7992;
    position: relative;
    cursor: pointer;
    margin: 0;
}

.checkbox input {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    margin: 0 !important;
}

.checkbox .checkbox-container {
    width: 20px;
    height: 20px;
    background-color: #fff;
    border: 2px solid #e3eaf6;
    border-radius: 4px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.checkbox input:checked + .checkbox-container {
    background-color: #134c85;
    border-color: #134c85;
}

.checkbox input:checked + .checkbox-container:after {
    content: "";
    width: 10px;
    height: 5px;
    background-color: transparent;
    border-bottom: 2px solid #fff;
    border-left: 2px solid #fff;
    position: absolute;
    top: 50%;
    left: 3px;
    transform: translateY(-4px) rotate(-45deg);
}

.iidm-link {
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 500 !important;
    color: rgba(19, 76, 133, 1) !important;
    opacity: 0.85;
}

.iidm-link:hover {
    opacity: 1;
}

.iidm-link:hover .link-icon {
    transform: translateX(-4px);
}

.divider {
    /* width: fit-content; */
    align-self: center;
    padding: 0 8px;
    font-size: 14px;
    font-weight: 600;
    color: #4e586d;
    position: relative;
    margin: 16px 0;
}

.divider::before,
.divider::after {
    content: "";
    width: 40px;
    height: 2px;
    background-color: #e3eaf6;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.divider::before {
    left: -40px;
}

.divider::after {
    right: -40px;
}
@media screen and (max-width: 768px) {
    .login-details {
        width: 100%;
    }
}
@media screen and (max-width: 575px) {
    .form-field-wrapper input {
        min-width: unset;
        width: 100%;
    }
    .flex-wrapper {
        padding-left: 0;
    }
    .login-details {
        box-sizing: border-box;
    }
    .logo-container2 {
        padding: 24px;
        display: flex;
        justify-content: center;
    }
}