* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
  }
  
  body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    background-color: #f8f9fa;
  }
  
  /* Container */
  .display-container {
    width: 100%;
    max-width: 400px;
    padding: 20px;
    text-align: center;
    /* border: 0px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
    /* background: #fff; */
  }
  
  .company-logo{
      padding: 10px;
      margin-bottom: 10px;
  }
  
  .company-logo .logo {
    height: 100px;
  }
  
  
  h1 {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 10px;
  }
  
  p {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 10px;
  }
  
  label {
    display: block;
    text-align: left;
    font-size: 14px;
    color: #495057;
    padding: 10px 0 5px 0;
  }
  
  input[type="text"],
  input[type="email"],
  input[type="password"],
  input[type="number"] {
    width: 100%;
    padding: 9px;
    margin-bottom: 5px;
    border: 1px solid #ced4da;
    border-radius: 5px;
    font-size: 14px;
    min-height: 39px;
    line-height: 19px;
    color: #080809;
  }

  input:focus{
    outline: none;
  }

  .invalid-input{
    border: 1px solid #dc3545 !important;
    /* background-color: #ffe6e6; */
    /* outline:none; */
  }

  .invalid-input:focus{
    /* border-color: #dc3545 !important;
    background-color: #ffe6e6; */
    outline:none;
  }

  .remember_me {
    display: flex;
    align-items: flex-start;
    /* margin-bottom: 15px; */
    padding: 5px;
    font-size: 13px;
    color: #495057;
  }

  .remember_me span{
    margin-left: 10px;
  }


  select {
    width: 100%;
    padding: 5px;
    margin-bottom: 5px;
    border: 1px solid #ced4da;
    border-radius: 5px;
    font-size: 14px;
    min-height: 40px;
    line-height: 20px;
    /* color: #8c8e90; */
    color: #767676;
  
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
  }
  
  
  button {
    width: 100%;
    padding: 10px;
    background-color: rgb(30, 28, 28);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    line-height: 20px !important;
    margin: 20px 0;
  }
  
  button:hover {
    background-color:  rgb(93, 91, 91);
  }
  
  #send-code-btn{
    margin-top: 10px;
  }

  
  .free-account .subtitle {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 20px;
  }
  
  /* Divider */
  .divider {
    display: flex;
    align-items: center;
    margin: 35px 0;
  }
  
  .divider hr {
    flex: 1;
    border: 0;
    border-top: 1px solid #dee2e6;
  }
  
  .signup-div{
      margin: 30px 0;
  }
  
  .signup-form {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
  
  .privacy{
      margin: 50px 0 0;
      font-size: 12px;
      color: #6c757d;
  }
  
  .privacy a {
    font-size: 12px;
    color: #0073e6;
    text-decoration: none;
  }
  
  .existing-user{
      padding: 5px;
  }
  
  .signin-link span {
    font-weight: bold;
  }
  
  .privacy-policy { 
     padding: 5px;
  }
  
  .code-inputs {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 20px;
  }
  
  .code-inputs input {
    width: 50px;
    height: 50px;
    text-align: center;
    font-size: 30px;
  }
  
  .hidden {
    display: none;
  }

  
  /* Password validation criteria */
  #password-criteria {
    list-style-type: none;
    margin: 10px 0;
    padding: 0 0 0 15px;
    text-align: left;
  }
  
  #password-criteria li {
    font-size: 14px;
    margin-bottom: 5px;
    color: #dc3545; /* Red for invalid criteria */
  }
  
  #password-criteria li.valid {
    color: #28a745; /* Green for valid criteria */
  }
  
  #password-criteria li.invalid {
    color: #dc3545; /* Red for invalid criteria */
  }


  .disabled-button {
    background-color: #ccc;
    color: #666;
    cursor: not-allowed;
    opacity: 0.6; 
    /* pointer-events: none;  */
  }

  .disabled-button:hover {
    background-color: #ccc;
    color: #666;
  }

  .error{
    color: #dc3545; /* Red color for error */
    font-size: 14px;
    height: 18px; /* Fixed height to reserve space for the error message */
  }

  .hidden_error {
    visibility: hidden; /* Hidden by default */
    opacity: 0; /* Fully transparent */
    transition: opacity 0.3s ease-in-out; /* Smooth fade-in effect */
  }
  
  .hidden_error.visible {
    visibility: visible; /* Make it visible */
    opacity: 1; /* Fully opaque */
  }


.disabled-link {
  color: gray !important;
  cursor: not-allowed !important; /* 🚫 Stop sign cursor */
  /* text-decoration: none !important; */
  /* pointer-events: none; Prevent clicking */
  opacity: 0.6;
}
