.signin-container {
    max-width: 992px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    position: relative;
    left: 50%;
    transform: translate(-50%);
}

.container {
    width: 100%;
    display: flex;
    border-radius: 27px;
    border: 1px solid var(--ozotec-erp-border-color);
    box-shadow: var(--ozotec-erp-shadow-color);
    min-height: 540px;
    animation: fadeIn 0.7s ease-in-out;
}

.welcome-container {
    width: 60%;
    position: relative;
    overflow: hidden;
    border-radius: 27px 0 0 27px;
    animation: fadeIn 0.5s forwards, scaleUp 0.5s forwards;
}

.welcome-slide {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.welcome-slide.active {
    opacity: 1;
}

.notification-banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: #000000;
    color: var(--ozotec-erp-primary-bg-color);
    border-radius: 10px;
    margin: 20px;
    box-shadow: var(--ozotec-erp-shadow-color);
    animation: slideInUp 0.5s ease-out;
    bottom: 0;
    position: absolute;
    width: -webkit-fill-available;
}

.notification-text {
    font-size: 16px;
    margin: 0;
    line-height: 1.5;
}

.notification-button {
    background-color: var(--ozotec-erp-primary-bg-color);
    color: #000;
    padding: 10px 20px;
    border: none;
    border-radius: 9px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s, transform 0.3s;
    cursor: pointer;
    letter-spacing: .4px;
}

.signup-container {
    width: 40%;
    box-sizing: border-box;
    padding: 20px;
    margin: auto 0;
}

.accform-container {
    background: var(--ozotec-erp-primary-bg-color);
    border-radius: 18px;
    display: block;
    flex-shrink: 0;
    margin: 0 auto;
    min-height: 0;
    width: 100%;
    max-width: 400px;
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

.accform-container.active {
    opacity: 1;
    transform: scale(1);
}

#loginForm,
#forgotPasswordForm,
#otpContainerForm,
#setNewPassword {
    height: auto;
    text-align: center;
    min-height: 416px;
    overflow-y: auto;
    padding: 36px 18px;
    overflow: hidden;
    margin: 0;
}

.logo-container {
    display: flex;
    height: 36px;
    justify-content: center;
}

.form-title {
    padding-bottom: 0;
    padding-top: 24px;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.3333;
    margin-bottom: 0;
    margin-top: 0;
    word-break: break-word;
}

.subtitle-ctr {
    padding-bottom: 1px;
    padding-top: 9px;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.1px;
    line-height: 1.5;
}

.form-container {
    border: 0 solid transparent;
    box-sizing: border-box;
    padding: 32px 0 0;
    vertical-align: top;
    white-space: normal;
    width: 100%;
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
}

.flex-field {
    display: grid;
    gap: 24px;
    margin-top: 32px;
}

.input-outter {
    height: 54px;
    padding-top: 0;
    position: relative;
    vertical-align: top;
    width: 100%;
}

.input-liner {
    direction: ltr;
    text-align: left;
    align-items: center;
    position: static;
    top: 0;
    display: flex;
}

.field-container {
    display: flex;
    box-flex: 1;
    flex-grow: 1;
    flex-shrink: 1;
    min-width: 0;
    position: relative;
}

.input-field {
    border: 2px solid transparent;
    border-radius: 4.5px;
    color: var(--ozotec-erp-primary-text-color);
    font-size: 16px;
    height: 54px;
    margin: 0;
    padding: 24px 13px 9px;
    width: 100%;
    z-index: 1;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.input-field:focus {
    border-color: var(--ozotec-erp-theme-color);
    box-shadow: 0 0 6px rgba(11, 87, 208, 0.1);
}

.input-box {
    box-flex: 1;
    flex-grow: 1;
    flex-shrink: 1;
    display: block;
    line-height: 24px;
    min-width: 0;
    outline: 0;
}

.input-focus {
    color: var(--ozotec-erp-secondary-text-color);
    bottom: 17.5px;
    font-size: 16px;
    font-weight: 400;
    left: 8px;
    max-width: calc(100% - 16px);
    padding: 0 8px;
    text-overflow: ellipsis;
    transition: transform 0.15s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    width: auto;
    box-sizing: border-box;
    overflow: hidden;
    z-index: 1;
}

.input-focus-anm {
    transform-origin: bottom left;
    transition: transform .15s cubic-bezier(.4, 0, .2, 1), opacity .15s cubic-bezier(.4, 0, .2, 1), background-color .15s cubic-bezier(.4, 0, .2, 1);
    -webkit-transition-property: color, bottom, transform;
    transition-property: color, bottom, transform, -webkit-transform;
    pointer-events: none;
    position: absolute;
}

.input-focus.focused {
    transform: scale(0.75) translateY(-21px);
}

.fc2 {
    margin-top: 24px;
}

#email,
#password,
#forgotEmail,
#newPassword,
#confirmPassword,
#newPassword {
    background-color: transparent;
    border: 1px solid var(--ozotec-erp-secondary-text-color);
    border-radius: 4.5px;
}

#email:focus,
#password:focus,
#forgotEmail:focus,
#newPassword:focus,
#confirmPassword:focus,
#newPassword:focus {
    border: 2px solid var(--ozotec-erp-primary-brand-color);
    transition: opacity .15s cubic-bezier(.4, 0, .2, 1);
}

#email:focus+.input-focus.focused,
#password:focus+.input-focus.focused,
#forgotEmail:focus+.input-focus.focused,
#newPassword:focus+.input-focus.focused,
#confirmPassword:focus+.input-focus.focused,
#newPassword:focus+.input-focus.focused {
    color: var(--ozotec-erp-primary-brand-color);
}

.error-message {
    color: var(--ozotec-erp-secondary-brand-color);
    font-size: 13px;
    display: none;
    margin-top: 6px;
    align-items: center;
    gap: 6px;
    margin-left: 4.5px;
}

.password-toggle {
    position: absolute;
    right: 15px;
    top: 18px;
    cursor: pointer;
    z-index: 1;
    background: none;
    border: none;
}

#visibilityIcon {
    display: none;
}

.forgotlink {
    padding: 9px 0;
    text-align: right;
}

#forgetPasswordLink {
    font-family: 'Roboto', sans-serif;
    position: relative;
    border: 0;
    background-color: transparent;
    cursor: pointer;
    font-size: 14px;
    padding: 3px 6px;
    text-align: left;
    color: var(--ozotec-erp-primary-brand-color);
    border-radius: 9px;
    display: inline-block;
    font-weight: 500;
    letter-spacing: 0.015625rem;
    outline: 0;
    z-index: 1;
}

#forgetPasswordLink:hover {
    background: var(--ozotec-erp-theme-lighter);
}

.signup-btn {
    background: var(--ozotec-erp-primary-brand-color);
    color: var(--ozotec-erp-primary-bg-color);
    border: 1px solid;
    padding: 0 24px;
    font-size: 1rem;
    transition: background-color 0.2s, transform 0.2s;
    box-shadow: none;
    height: 45px;
    border-radius: 9px;
    cursor: pointer;
    width: 100%;
    outline: none;
}

.signup-btn:hover {
    background: var(--ozotec-erp-primary-hover-color);
}

.form-btns {
    margin-top: 14px;
}

.signin-link {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 24px;
    color: var(--ozotec-erp-primary-text-color);
    text-decoration: none;
}

.signin-link span {
    margin-left: 1px;
    padding: 3px 6px;
    font-weight: 500;
    border-radius: 9px;
    color: var(--ozotec-erp-primary-brand-color);
}

.signin-link span:hover {
    background: var(--ozotec-erp-theme-lighter);
}

.remember-forgot-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 14px;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 3px;
    font-size: 14px;
    padding: 3px 6px;
    font-weight: 500;
    letter-spacing: 0.015625rem;
    outline: none;
    cursor: pointer;
}

.remember-me input[type="checkbox"] {
    outline: none;
    cursor: pointer;
}

#welcomeSlider {
    display: none;
}

#initialText {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--ozotec-erp-primary-brand-color);
    padding: 40px;
    text-align: center;
    width: 60%;
    overflow: hidden;
    border-radius: 27px 0 0 27px;
}

.initialTextContainer {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px 40px;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    max-width: 85%;
    text-align: center;
    color: #FFFFFF;
    font-family: 'Merriweather', sans-serif;
}

blockquote {
    font-size: 1.2rem;
    font-weight: 500;
    font-style: italic;
    line-height: 1.5;
    position: relative;
    margin: 0;
}

blockquote::before,
blockquote::after {
    content: '“';
    font-size: 2.5rem;
    position: absolute;
    color: rgba(255, 255, 255, 0.3);
    font-style: normal;
}

blockquote::before {
    left: -20px;
    top: -20px;
}

blockquote::after {
    right: -20px;
    bottom: -20px;
    content: '”';
}

footer {
    font-size: 18px;
    font-weight: 400;
    margin-top: 30px;
    color: #e0e0e0;
    text-align: right;
}

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

.success-icon svg {
    margin-bottom: 20px;
}

.success-message h1 {
    font-size: 32px;
    color: #333;
    margin-bottom: 10px;
}

.success-message h2 {
    font-size: 24px;
    color: #555;
    margin-bottom: 20px;
}

.success-message p {
    font-size: 16px;
    color: var(--ozotec-erp-secondary-text-color);
    margin-bottom: 27px;
}

.next-steps {
    background: var(--ozotec-erp-content-bg-color);
    border-radius: 18px;
    padding: 9px;
    width: 90%;
    margin: 0 auto;
}

.success-message .next-steps ul {
    list-style: none;
    padding: 0;
}

.success-message .next-steps li {
    margin: 10px 0;
    font-size: 18px;
    border-radius: 5px;
}

.success-message .next-steps a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    border-radius: 5px;
    color: var(--ozotec-erp-primary-brand-color);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.4px;
    padding: 6px 12px;
    transition: background 0.3s ease, color 0.3s ease;
}

.success-message .next-steps a div {
    display: flex;
    align-items: center;
    gap: 7px;
}

.success-message .next-steps a span {
    margin-bottom: -1.5px;
}

.success-message .next-steps a svg {
    width: 18px;
    height: 18px;
    transition: fill 0.3s ease;
}

.success-message .next-steps a:hover {
    color: var(--ozotec-erp-primary-bg-color);
    background-color: var(--ozotec-erp-primary-brand-color);
}

.success-message .next-steps a:hover svg path {
    fill: var(--ozotec-erp-primary-bg-color);
}

.success-message .next-steps a:hover svg {
    transform: scale(1.1);
}

.success-message .logout a {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--ozotec-erp-secondary-brand-color);
    color: var(--ozotec-erp-primary-bg-color);
    border-radius: 5px;
    text-decoration: none;
}

.logout {
    margin-top: 27px;
}

.success-message .logout a:hover {
    background-color: var(--ozotec-erp-secondary-hover-color);
}

.preloader {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgb(255 255 255 / 90%);
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    z-index: 999;
}

.spinner {
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    border-top: 4px solid var(--ozotec-erp-primary-brand-color);
    width: 40px;
    height: 40px;
    -webkit-animation: spin 1s linear infinite;
    animation: spin 1s linear infinite;
}

.hide-form {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

.show-form {
    opacity: 1;
    transform: scale(1);
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

.hidden {
    display: none;
}

.icon-container {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    width: 72px;
    height: 72px;
    margin: 0 auto;
}

.icon-container svg {
    background: #d6e7fb;
    border-radius: 50%;
    padding: 10px;
    position: relative;
    z-index: 1;
    overflow: visible;
    animation: zoomInOut 2.5s ease-in-out infinite;
}

.fp {
    padding-top: 15px;
}

.otp-container {
    padding: 24px 0 15px;
}

.otp-input-wrapper {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.otp-input {
    width: 43px;
    height: 43px;
    font-size: 24px;
    text-align: center;
    border: 1px solid var(--ozotec-erp-secondary-text-color);
    border-radius: 4.5px;
    outline: none;
    transition: border-color 0.3s;
}

#resendTimer {
    display: none;
    font-size: 14px;
}

.otp-ctr {
    display: grid;
    gap: 9px;
}

#userEmailEncrypted {
    color: var(--ozotec-erp-theme-color);
    font-weight: 500;
}

#js-warning {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--ozotec-erp-primary-bg-color);
    position: absolute;
    width: 100vw;
    height: 100vh;
    font-size: 20px;
    z-index: 9999;
  }

.JSloader {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: inline-block;
    border-top: 3px solid var(--ozotec-erp-theme-color);
    border-right: 3px solid transparent;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
  }
  
  @keyframes rotation {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  } 

  #forgotPasswordForm {
    display: none;
  }

#backToLogin, #backToLoginOcf, #backToLoginSnp {
    gap: 6px;
    background: none;
    border: none;
    font-size: 14px;
    margin: 24px auto 0;
    color: var(--ozotec-erp-secondary-text-color);
    cursor: pointer;
}

#backToLogin svg, #backToLoginOcf svg, #backToLoginSnp svg {
    width: 14px;
    height: 14px;
    fill: var(--ozotec-erp-secondary-text-color);
}

.fpf {
    margin-top: 24px;
}

#otpContainerForm {
    display: none;
}

.otp-inputs {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 24px 0;
}

#backToLoginOcf, #backToLogin, #backToLoginSnp {
    padding: 4px 9px;
    border-radius: 9px;
}

#backToLoginOcf:hover, #backToLogin:hover, #backToLoginSnp:hover {
    background: var(--ozotec-erp-secondary-bg-color);
}

#setNewPassword {
    display: none;
}

#userEmail {
    color: var(--ozotec-erp-theme-color);
}

.ocfText {
    display: grid;
}