/* Consolidated CSS for Login-v2 Widget */
/* Merging: login-v2.css, screens/login_style.css, and screens/otp.css */

/* Font Imports */
@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,wght@0,200;0,300;0,400;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,600;1,700;1,800;1,900&display=swap');

/* Base Styles - Common across all components */
.sso-login-v2-67890, .sso-login-12345 {
    font-family: "Nunito Sans", sans-serif;
    font-optical-sizing: auto;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.sso-login-v2-67890 h1, .sso-login-12345 h1 {
    text-align: center;
    margin-bottom: 0;
    margin-top: 50px;
}

/* ===== NEW LOGIN WIDGET CSS (login-v2.css styles) ===== */

/* Main Container */
.sso-login-v2-67890 .new-login-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Modal Overlay */
.sso-login-v2-67890 .modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  z-index: 50;
}

/* Login Screen */
.sso-login-v2-67890 .login-screen {
  position: relative;
  width: 475px;
  min-height: 664px;
  background: #FFFFFF;
  border-radius: 8px;
  z-index: 51;
  padding: 24px;
  box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.1);
}

/* Close Button */
.sso-login-v2-67890 .close-button {
  position: absolute;
  width: 24px;
  height: 24px;
  right: 16px;
  top: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #1C1B1F;
  background: #D9D9D9;
  border-radius: 50%;
  transition: background 0.2s ease;
}

.sso-login-v2-67890 .close-button:hover {
  background: #BDBDBD;
}

/* Logo Section */
.sso-login-v2-67890 .logo-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin: 23px 0 32px 0;
}

.sso-login-v2-67890 .logo {
  width: 155px;
  height: 45px;
}

.sso-login-v2-67890 .logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.sso-login-v2-67890 .tagline {
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 27.12px;
  text-align: center;
  letter-spacing: -0.33px;
  color: #414754;
  align-items: center;
}

/* Welcome Message */
.sso-login-v2-67890 .welcome-message {
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 38px;
  text-align: center;
  letter-spacing: -0.325474px;
  color: #414754;
  margin-bottom: 32px;
}

.sso-login-v2-67890 .welcome-message .highlight {
  color: #F58634;
  font-weight: 600;
}

/* Form Container */
.sso-login-v2-67890 .form-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Form Title */
.sso-login-v2-67890 .form-title h2 {
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 27px;
  text-align: center;
  letter-spacing: -0.325474px;
  color: #101010;
  margin: 0 0 24px 0;
}

/* Form Steps */
.sso-login-v2-67890 .form-step {
  display: none;
}

.sso-login-v2-67890 .form-step.active {
  display: block;
}

/* Input Fields */
.sso-login-v2-67890 .input-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.sso-login-v2-67890 .input-label {
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.325474px;
  color: #344054;
}

.sso-login-v2-67890 .input-wrapper {
  display: flex;
  align-items: center;
  border: 1px solid #E6E7F1;
  border-radius: 8px;
  background: #FFFFFF;
  box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05);
  overflow: hidden;
}

.sso-login-v2-67890 .input-wrapper input {
  flex: 1;
  padding: 10px 14px;
  border: none;
  outline: none;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #101828;
}

.sso-login-v2-67890 .input-wrapper input::placeholder {
  color: #A3A9B9;
}

.sso-login-v2-67890 .input-wrapper input.error {
  border-color: #EF4444;
}

/* Country Dropdown */
.sso-login-v2-67890 .country-dropdown {
  display: flex;
  align-items: center;
  padding: 10px 12px;
  gap: 4px;
  border-right: 1px solid #E6E7F1;
  min-width: 98px;
}

.sso-login-v2-67890 .flag-icon {
  width: 27px;
  height: 18px;
}

.sso-login-v2-67890 .country-code {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #101828;
}

.sso-login-v2-67890 .dropdown-icon {
  color: #667085;
  font-size: 12px;
}

/* Phone Input */
.sso-login-v2-67890 .phone-input {
  flex: 1;
}

.sso-login-v2-67890 .phone-input input {
  width: 100%;
  padding: 10px 14px;
  border: none;
  outline: none;
}

/* Continue Button */
.sso-login-v2-67890 .continue-button {
  width: 100%;
  padding: 10px 18px;
  background: #F58634;
  border: 1px solid #F58634;
  border-radius: 8px;
  box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #FFFFFF;
  cursor: pointer;
  transition: all 0.2s ease;
}

.sso-login-v2-67890 .continue-button:hover {
  background: #E06B1A;
  border-color: #E06B1A;
}

.sso-login-v2-67890 .continue-button:disabled {
  background: #D1D5DB;
  border-color: #D1D5DB;
  cursor: not-allowed;
}

/* OTP Message */
.sso-login-v2-67890 .otp-message {
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #344054;
  margin-bottom: 16px;
  text-align: center;
}

/* Resend Container */
.sso-login-v2-67890 .resend-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.sso-login-v2-67890 .resend-button {
  background: none;
  border: none;
  color: #F58634;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  text-decoration: underline;
}

.sso-login-v2-67890 .resend-button:disabled {
  color: #9CA3AF;
  cursor: not-allowed;
  text-decoration: none;
}

.sso-login-v2-67890 .timer {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #6B7280;
}

/* Separator */
.sso-login-v2-67890 .separator {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 24px 0;
}

.sso-login-v2-67890 .separator-line {
  flex: 1;
  height: 1px;
  background: #E6E7F1;
}

.sso-login-v2-67890 .separator-text {
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  text-align: center;
  letter-spacing: -0.325474px;
  color: #101010;
}

/* Google Sign In */
.sso-login-v2-67890 .google-signin {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

.sso-login-v2-67890 .google-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 10px 16px;
  width: 217px;
  height: 44px;
  background: #FFFFFF;
  border: 1px solid #D0D5DD;
  border-radius: 8px;
  box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05);
  cursor: pointer;
  transition: all 0.2s ease;
}

.sso-login-v2-67890 .google-button:hover {
  background: #F9FAFB;
  border-color: #9CA3AF;
}

.sso-login-v2-67890 .google-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sso-login-v2-67890 .google-button span {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #344054;
}

/* Terms Container */
.sso-login-v2-67890 .terms-container {
  text-align: center;
}

.sso-login-v2-67890 .terms-text {
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 21px;
  text-align: center;
  letter-spacing: -0.325474px;
  color: #344054;
  margin: 0;
}

.sso-login-v2-67890 .terms-text a {
  color: #F58634;
  text-decoration: none;
}

.sso-login-v2-67890 .terms-text a:hover {
  text-decoration: underline;
}

/* Error Messages */
.sso-login-v2-67890 .error-message {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  color: #EF4444;
  margin-top: 4px;
}

.sso-login-v2-67890 .input-wrapper.error {
  border-color: #EF4444;
}

/* Animation for form steps */
.sso-login-v2-67890 .form-step {
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.sso-login-v2-67890 .form-step:not(.active) {
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
}

.sso-login-v2-67890 .form-step.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

/* OTP Section Styles */
.sso-login-v2-67890 .otp-section {
  margin-bottom: 24px;
}

.sso-login-v2-67890 .otp-section .form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #1a202c;
}

.sso-login-v2-67890 .otp-input-container {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 8px;
}

.sso-login-v2-67890 .otp-input {
  width: 48px;
  height: 48px;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  color: #1a202c;
  background: #ffffff;
  transition: all 0.2s ease;
}

.sso-login-v2-67890 .otp-input:focus {
  outline: none;
  border-color: #3182ce;
  box-shadow: 0 0 0 3px rgba(49, 130, 206, 0.1);
}

.sso-login-v2-67890 .otp-input:invalid {
  border-color: #e53e3e;
}

/* Contact Info Display */
.sso-login-v2-67890 .contact-info {
  margin: 12px 0;
  padding: 12px;
  background: #f7fafc;
  border-radius: 8px;
  font-size: 14px;
}

.sso-login-v2-67890 .mobile-info, .sso-login-v2-67890 .email-info {
  margin: 4px 0;
  color: #2d3748;
}

.sso-login-v2-67890 .mobile-info strong, .sso-login-v2-67890 .email-info strong {
  color: #1a202c;
}

/* Error Display for Login Triggers */
.sso-login-v2-67890 #error-display {
  background-color: #fed7d7;
  border: 1px solid #fc8181;
  border-radius: 4px;
  color: #c53030;
  padding: 12px;
  margin-bottom: 16px;
  font-size: 14px;
  line-height: 1.4;
  display: none;
  text-align: center;
}

.sso-login-v2-67890 #error-display:not(:empty) {
  display: block;
}

/* Spinner Animation */
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.sso-login-v2-67890 .spinner {
  width: 20px;
  height: 20px;
  border: 2px solid #ffffff;
  border-top: 2px solid transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  display: inline-block;
  margin-left: 8px;
}

/* ===== LEGACY LOGIN WIDGET CSS (login_style.css styles) ===== */

.sso-login-12345#lean_overlay {
    position: fixed;
    z-index: 12000;
    top: 0px;
    left: 0px;
    height: 100vh;
    width: 100%;
    background: #000;
    display: none;
}

.sso-login-12345.popupContainer {
    width: 475px;
    min-height: 664px;
    top: 102px;
    left: 502px;
    bottom: 36px;
    background: #FFF;
    overflow: auto;
    display: block;
    position: fixed;
    opacity: 1;
    border-radius: 8px;
    overflow-y: auto;
}

.sso-login-12345#ast-modal {
    display: block;
    opacity: 1;
    z-index: 12001;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.sso-login-12345 .ast-24-login {
    display: block;
    cursor: pointer;
    width: fit-content;
    border: 1px solid gray;
    padding: 5px 10px;
    border-radius: 10px;
}

.sso-login-12345 .input-wrapper{
    width: 100%;
}

.sso-login-12345 .btn {
    background: #F4F4F2;
    border-radius: 4px;
    font-size: 16px;
    padding: 10px 20px;
}

.sso-login-12345 .btn_red {
    background: #E67716;
    color: #FFF;
    border:none;
    cursor: pointer;
    font-size: 16px;
    height: 44px;
}

.sso-login-12345 .btn:hover {
    background: #E4E4E2;
}

.sso-login-12345 .btn_red:hover {
    background: #c24412;
}

.sso-login-12345 a.btn {
    color: #666;
    text-align: center;
    text-decoration: none;
}

.sso-login-12345 a.btn_red {
    color: #FFF;
}

.sso-login-12345 .full_size_button{
    width: 100%;
    display: block;
}

.sso-login-12345 .one_half {
    width: 50%;
    display: block;
    float: left;
}

.sso-login-12345 .one_half.last {
    width: 45%;
    margin-left: 5%;
}

.sso-login-12345 .flex-container{
    display: flex;
    justify-content: space-between;
    gap:20px;
}

.sso-login-12345 .flex-container-item{
    width: 50%;
}

.sso-login-12345 .logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 22px;
}

.sso-login-12345 .app-logo {
    width: 205px;
    height:auto;
    object-fit: contain;
}

.sso-login-12345 .tagline {
    width: 205px;
    height: 20px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: -0.33px;
    text-align: center;
    color: #666;
}

.sso-login-12345 .headline {
    text-align: center;
    margin-bottom: 22px;
}

.sso-login-12345 .headline-line1,
.sso-login-12345 .headline-line2 {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 1.4;
    margin-bottom: 4px;
    letter-spacing: -0.33px;
    color: #414754;
}

.sso-login-12345 .headline .highlight {
    color: #E67716;
    font-weight: 600;
}

.sso-login-12345 .login-register-title {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    font-size: 18px;
    font-style: bold;
    color: #000;
    margin-top: 16px;
    text-align: center;
}

.sso-login-12345 .mobile-input-section {
    margin-bottom: 16px;
    padding: 0 20px;
}

.sso-login-12345 .mobile-input-section .box-label {
    width: 100%;
    max-width: 343px;
    display: block;
    margin:0 auto;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #344054;
    margin-bottom: 8px;
    letter-spacing: -0.33px;
}

/* Desktop alignment for mobile number label */
@media (min-width: 768px) {
    .sso-login-12345 .mobile-input-section .box-label {
        margin-left: 45.2px;
    }
}

.sso-login-12345 .mobile-input-container {
    width: 100%;
    max-width: 343px;
    height: 44px;
    display: flex;
    align-items: center;
    border: 1px solid #DDD;
    border-radius: 8px;
    background: #fff;
    margin: 0 auto;
    padding: 0 16px;
}

.sso-login-12345 .country-selector {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-right: 12px;
    border-right: 1px solid #DDD;
    cursor: pointer;
}

.sso-login-12345 .country-flag {
    width: 20px;
    height: 15px;
    object-fit: cover;
    border-radius: 2px;
}

.sso-login-12345 .country-code {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

.sso-login-12345 .dropdown-arrow {
    width: 10px;
    height: 10px;
    object-fit: contain;
}

.sso-login-12345 .mobile-input-container input[type="tel"] {
    flex: 1;
    height: 100%;
    border: none;
    padding: 0 16px;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 16px;
    color: #333;
    background: transparent;
}

.sso-login-12345 .mobile-input-container input[type="tel"]::placeholder {
    color: #999;
}

.sso-login-12345 .mobile-input-container input[type="tel"]:focus {
    outline: none;
}

.sso-login-12345 .email-input-section {
    margin-bottom: 16px;
    padding: 0 20px;
    display: none;
}

.sso-login-12345 .email-input-section .box-label {
    display: block;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #344054;
    margin-bottom: 8px;
    letter-spacing: -0.33px;
}

/* Desktop alignment for mobile number label */
@media (min-width: 768px) {
    .sso-login-12345 .email-input-section .box-label {
        margin-left: 45.2px;
    }
}

.sso-login-12345 .email-input-container {
    width:100%;
    max-width: 343px;
    height: 44px;
    display: flex;
    align-items: center;
    border: 1px solid #DDD;
    border-radius: 8px;
    background: #fff;
    margin: 0 auto;
    padding: 0 16px;
}

.sso-login-12345 .email-input-container input[type="email"] {
    width: 100%;
    height: 100%;
    border: none;
    background: transparent;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 16px;
    color: #333;
}

.sso-login-12345 .email-input-container input[type="email"]::placeholder {
    color: #999;
}

.sso-login-12345 .email-input-container input[type="email"]:focus {
    outline: none;
}

.sso-login-12345 .logoContainer{
    padding-top: 60px;
    text-align: center;
}

/* Popup Styles*/
.sso-login-12345 .popupHeader {
    background: #fff;
    position: relative;
    padding: 20px 20px 10px 20px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.sso-login-12345 .popupHeader .modal_close {
    position: absolute;
    right: 20px;
    top: 20px;
    padding: 5px;
    background: transparent;
    cursor: pointer;
    color: #666;
    font-size: 18px;
    border: none;
    z-index: 10;
}

.sso-login-12345 .popupHeader .modal_close:hover {
    background: #f5f5f5;
    border-radius: 4px;
}

.sso-login-12345 .popupBody {
    padding: 10px;
}

/* Social Login Form */
.sso-login-12345 .social_login .social_box {
    padding: 5px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    clear: both;
    overflow: hidden;
    box-sizing: border-box;
    width: 100%;
    margin: 5px auto 10px auto;
}

.sso-login-12345 .social_login .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 10px;
    padding: 5px 10px;
    margin-right: 10px;
    color: #FFF;
    font-size: 16px;
    text-align: center;
}

.input-wrapper .box-label{
    display: inline-block;
    margin-bottom: 5px;
}

.sso-login-12345 .social_login .icon_title {
    display: flex;
    align-items: center;
    padding: 5px 0;
    font-weight: bold;
    font-size: 16px;
    color: #777;
}

.sso-login-12345 .or-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 343px;
  margin: 0 auto;
  box-sizing: border-box;
  gap: 12px; /* space between lines and text */
}

.sso-login-12345 .or-container::before,
.sso-login-12345 .or-container::after {
  content: "";
  flex: 1;
  height: 1px;
  background-color: #E6E7F1;
}

.sso-login-12345 .or {
  text-transform: lowercase;
  font-size: 16px;
  color: #000;
  white-space: nowrap;
}


.sso-login-12345 .centeredText {
    text-align: center;
    margin: 16px 0;
    clear: both;
    overflow: hidden;
    text-transform: uppercase;
}

.sso-login-12345 .terms-conditions-text {
    text-align: center;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 12px;
    line-height: 21px;
    letter-spacing: -0.33px;
}

.sso-login-12345 .terms-conditions-text p {
    margin: 0;
    padding: 0;
}

.sso-login-12345 .terms-conditions-text a {
    color: #23a2ff;
    text-decoration: none;
}

.sso-login-12345 .terms-conditions-text a:hover {
    text-decoration: underline;
}

.sso-login-12345 .action_btns {
    clear: both;
    overflow: hidden;
    padding: 0 20px;
}

.sso-login-12345 .action_btns .btn {
    width: 100%;
    max-width: 343px;
    height: 44px;
    margin: 0 auto;
    display: block;
}

.sso-login-12345 .action_btns a {
    display: block;
}

.sso-login-12345 .bold{
    font-weight: 600;
}

.sso-login-12345 .password-container{
    position: relative;
}

.sso-login-12345 .eye-toggle-button{
    position: absolute;
    cursor: pointer;
    top: 0;
    right: 0;
    width: 35px;
    color: #939393;
    height: 99%;
    max-height: 37.6px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0 4px 4px 0;
}

/* User Login Form */
.sso-login-12345 .user_login_email, .sso-login-12345 .user_login_number, .sso-login-12345 .forgot_password_flow, .sso-login-12345 .sso_user_register_flow,
.sso-login-12345 .sso_otp_flow, .sso-login-12345 .otp-email-box, .sso-login-12345 .otp_login_flow,.sso-login-12345 #error-display {
    display: none;
}

.sso-login-12345 #error-display{
    font-size: 14px;    
    color: rgb(215, 14, 14);
    font-weight: 600;
    text-align: center;
}

.sso-login-12345 .user_login label {
    display: block;
    margin-bottom: 5px;
}

.sso-login-12345 .resend-otp{
    background: none;
    border: none;
    padding: 0;
    margin-right: 8px;
    font-size: 12px;
    color: #5b9ae4;
    font-family: inherit;
}

.sso-login-12345 .resend-otp:hover{
    text-decoration: underline;
}

.sso-login-12345 .resend-otp:disabled{
    color: grey;
    cursor: not-allowed;
}

.sso-login-12345 .otp-timer-display{
    font-size: 12px;
    color: #000;
}

.sso-login-12345 input{
    display: block;
    width: 100%;
    max-width: 100%;
    padding: 10px;
    border-radius: 4px;
    border: 1px solid #DDD;
    color: #666;
    box-sizing: border-box;
}

.sso-login-12345 .user_login input[type="text"],
.sso-login-12345 .user_login input[type="email"],
.sso-login-12345 .user_login input[type="password"],
.sso-login-12345 .social_login input[type="text"] {
    display: block;
    width: 100%;
    max-width: 100%;
    padding: 10px;
    border-radius: 4px;
    border: 1px solid #DDD;
    color: #666;
    box-sizing: border-box;
}

.sso-login-12345 .user_login input[type="checkbox"] {
    float: left;
    margin-right: 5px;
}

.sso-login-12345 .user_login input[type="checkbox"]+label {
    float: left;
}

.sso-login-12345 .user_login .checkbox {
    margin-bottom: 10px;
    clear: both;
    overflow: hidden;
}

.sso-login-12345 .forgot_password {
    display: block;
    margin: 5px 0 10px;
    clear: both;
    font-size: 12px;
    overflow: hidden;
    text-decoration: none;
    color: #E67716;
}

.sso-login-12345 .forgot_password:hover{
    text-decoration: underline;
}

.sso-login-12345 .generate-otp-login{
    font-size: 12px;
    color: #5b9ae4;
    margin-top: 2px;
    cursor: pointer;
}

.sso-login-12345 .generate-otp-login:hover{
    text-decoration: underline;
}

/* User Register Form */
.sso-login-12345 .user_register {
    display: none;
}

.sso-login-12345 .user_register label {
    display: block;
    margin-bottom: 5px;
}

.sso-login-12345 .user_register input[type="text"],
.sso-login-12345 .user_register input[type="email"],
.sso-login-12345 .user_register input[type="password"] {
    display: block;
    width: 100%;
    padding: 10px;
    border: 1px solid #DDD;
    border-radius: 4px;
    color: #666;
}

.sso-login-12345 .user_register input[type="checkbox"] {
    float: left;
    margin-right: 5px;
}

.sso-login-12345 .user_register input[type="checkbox"]+label {
    float: left;
}

.sso-login-12345 .user_register .checkbox {
    margin-bottom: 10px;
    clear: both;
    overflow: hidden;
}

.sso-login-12345 #sso-login-password-field {
    display: none;
}

.sso-login-12345 #sso-generate-otp-login {
    display: none;
    text-align: right;
    text-decoration: underline;
    margin-bottom: 20px;
    cursor: pointer;
}

.sso-login-12345 .phone-input-container{
    display: flex;
    align-items: center;
    width: 100%;
}

.sso-login-12345 .phone-input-container-number{
    width: 15%;
}

.sso-login-12345 .phone-input-container-box{
    width: 85%;
}

.sso-login-12345 input[name="dob"] {
    display: block;
    width: 100%;
    padding: 10px;
    border: 1px solid #DDD;
    border-radius: 4px;
    color: #666;
}

.sso-login-12345 select[name="occupation"], .sso-login-12345 select[name="gender"]{
    display: block;
    width: 100%;
    padding: 10px;
    border: 1px solid #DDD;
    border-radius: 4px;
    color: #666;
}

/* Otp Flow */
.sso-login-12345 .otp_flow {
    display: none;
    overflow: auto;
}

.sso-login-12345 .otp_flow label {
    display: block;
    margin-bottom: 5px;
}

.sso-login-12345 .otp_flow input[type="text"],
.sso-login-12345 .otp_flow input[type="email"],
.sso-login-12345 .otp_flow input[type="password"],
.sso-login-12345 .otp_flow input[type="number"] {
    display: block;
    width: 100%;
    padding: 10px;
    border: 1px solid #DDD;
    color: #666;
}

.sso-login-12345 #otp_flow_mobile_number {
    text-align: center;
    font-size: 2vw;
}

.sso-login-12345 .header_title.box-label{
    color: #fff;
}

.sso-login-12345 .box-label{
    font-size: 14px;
    color:#000;
}

.sso-login-12345 .otp-display-label-box{
    color: grey;
}

.sso-login-12345-color-primary{
    color: #E67716;
    cursor: pointer;
}

.sso-login-12345-profile-picture-image{
    width: 24px;
    border-radius: 50%;
}

.sso-login-12345-profile-picture-initials{
    border-radius: 50%;
    width: 24px;
    height: 24px;
    aspect-ratio: 1;
    font-size: 18px;
    border:1px solid #000;
    display: flex;
    color: #000;
    background-color: #efefef;
    justify-content: center;
    align-self: center;
}

/* ===== OTP SCREEN SPECIFIC CSS (otp.css styles) ===== */

/* OTP Overlay adjustments */
.sso-login-12345#lean_overlay {
    background: rgba(0, 0, 0, 0.3);
    display: block;
}

.sso-login-12345.popupContainer {
    height: 540px;
    top: 154px;
    overflow-y: hidden;
}

.sso-login-12345#ast-modal {
    overflow: hidden;
    overflow-y: hidden;
}

.sso-login-12345 .action_btns {
    padding: 0px;
    text-align: center;
}

.sso-login-12345 .action_btns .btn {
    display: inline-block;
    border-radius: 8px;
}

/* OTP Timer and Resend styles */
.sso-login-12345 .otp-timer-display{
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 12px;
    line-height: 18px;
    letter-spacing: -0.33px;
    color: #A3A9B9;
}

.sso-login-12345 .otp-timer-text {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 12px;
    line-height: 18px;
    letter-spacing: -0.33px;
    color: #344054;
    margin-right: 8px;
}

.sso-login-12345 .resend-text {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 12px;
    line-height: 18px;
    letter-spacing: -0.33px;
    color: #344054;
    margin-right: 8px;
}

.sso-login-12345 .resend-sms-link {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 12px;
    line-height: 27.12px;
    letter-spacing: -0.33px;
    color: #5b9ae4;
    cursor: pointer;
    text-decoration: underline;
    text-decoration-style: solid;
    text-decoration-thickness: 1px;
}

/* OTP Verification Specific Styles */
.sso-login-12345 .otp-verification-section {
    padding: 0px;
}

.sso-login-12345 .otp-info {
    text-align: center;
    margin-bottom: 20px;
}

.sso-login-12345 .otp-info p {
    margin: 4px 0;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.33px;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.sso-login-12345 .otp-info .phone-number {
    font-weight: 400;
    color: #000;
    font-size: 14px;
}

.sso-login-12345 .change-number-link {
    background: none;
    border: none;
    padding: 0;
    margin-left: 8px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 12px;
    line-height: 27.12px;
    letter-spacing: -0.33px;
    color: #5b9ae4;
    cursor: pointer;
    text-decoration: underline;
    text-decoration-style: solid;
    text-decoration-thickness: 1px;
}

.sso-login-12345 .otp-input-container {
    margin-bottom: 24px;
    padding: 0 20px;
    text-align: center;
}

.sso-login-12345 .otp-single-input {
    width: 100%;
    max-width: 343px;
    height: 48px;
    border: 1px solid #DDD;
    border-radius: 8px;
    text-align: center;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    background: #fff;
    transition: border-color 0.3s ease;
    margin: 0 auto;
    display: block;
    padding: 0 16px;
    box-sizing: border-box;
}

.sso-login-12345 .otp-single-input:focus {
    outline: none;
    border-color: #E67716;
}

.sso-login-12345 .otp-single-input::placeholder {
    color: #999;
    font-weight: 400;
}

.sso-login-12345 .otp-timer-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 16px 0;
    padding: 0 20px;
}

.sso-login-12345 .timer-display {
    flex: 1;
    text-align: center;
}

.sso-login-12345 .change-number-section {
    text-align: center;
    margin-top: 16px;
    padding: 0 20px;
}

.sso-login-12345 .change-number-text {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 14px;
    color: #666;
}

.sso-login-12345 .change-number-btn {
    background: none;
    border: none;
    padding: 0;
    font-size: 14px;
    color: #E67716;
    font-family: inherit;
    cursor: pointer;
    text-decoration: underline;
}

.sso-login-12345 .change-number-btn:hover {
    color: #c24412;
}

/* ===== RESPONSIVE DESIGN ===== */

@media (max-width: 768px) {
  .sso-login-v2-67890 .login-screen {
    width: 90vw;
    max-width: 400px;
    margin: 20px;
    min-height: auto;
  }
  
  .sso-login-v2-67890 .welcome-message {
    font-size: 20px;
    line-height: 32px;
  }
  
  .sso-login-v2-67890 .country-dropdown {
    min-width: 80px;
  }
  
  .sso-login-v2-67890 .google-button {
    width: 100%;
  }
}

@media screen and (max-width: 650px) {
    .sso-login-12345.popupContainer{
        width: 100% !important;
        height: calc(100vh - 154px) !important;
        top: 154px !important;
        left: 0 !important;
        transform: none !important;
    }

    .sso-login-12345#ast-modal {
        top: 154px !important;
        left: 0 !important;
        transform: none !important;
    }

    .sso-login-12345 .flex-container{
        flex-direction: column;
    }

    .sso-login-12345 .flex-container-item{
        width: 100%;
    }
    
    .sso-login-12345 .otp-input-group {
        gap: 8px;
    }
    
    .sso-login-12345 .otp-input {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}
