/* CSS Reset */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  html, body {
    height: 100%;
  }
  
  /* Global dark theme and centering */
  body {
    background-color: #121212;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  }
  
  /* Login card styles */
  .form-container {
    width: 400px;
    max-width: 90%;
    border-radius: 0.75rem;
    background-color: #1a1a1a;
    padding: 2rem;
    color: #cfcfcf;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
  }
  
  /* .title {
    text-align: center;
    font-size: 1.5rem;
    line-height: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
  } */
  
  
  

  .title {
    margin-bottom: 1.5rem;
    font-size: 28px;
    font-weight: 600;
    letter-spacing: -1px;
    position: relative;
    display: flex;
    align-items: center;
    padding-left: 30px;
    color: #d0d0d0;
  }
  .title + .message {
    margin-top: -5px;
  }
  
  
  .title::before {
    width: 18px;
    height: 18px;
  }
  
  
  .title::after {
    width: 18px;
    height: 18px;
    animation: pulse 1s linear infinite;
  }
  
  .title::before,
  .title::after {
    position: absolute;
    content: "";
    height: 15px;
    width: 15px;
    border-radius: 50%;
    left: 0px;
    background-color: #ff8000;
  }



  
  .form {
    display: flex;
    flex-direction: column;
  }
  
  .input-group {
    margin-bottom: 1rem;
  }
  
  .input-group label {
    font-size: 0.875rem;
    margin-bottom: 10px; /* Adds a 3px gap */
     color: #d6d6d6;
     display: block;
     margin-bottom: 8px; /* Adjust the value as needed */
  }
  
  
  .input-group input {
    width: 100%;
    border-radius: 0.375rem;
    /* border of input box */
    border: 1px solid #818181;
    background-color: transparent;
    padding: 0.75rem 1rem;
    color: #f3f4f6;
    font-size: 1rem;
  }
  
  .input-group input:focus {
    border-color: #d9d9d9;
    outline: none;
  }
  
  .forgot {
    text-align: right;
    margin-bottom: 1rem;
    font-size: 0.75rem;
    color: #9ca3af;
  }
  
  .forgot a {
    color: hsl(0, 0%, 78%);
    text-decoration: none;
  }
  
  .forgot a:hover {
    text-decoration: underline;
    color: #5aa9ff;
  }
  
  .sign {
    width: 100%;
    background-color: #ff8000;
    padding: 0.75rem;
    text-align: center;
    color: #fff;
    border: none;
    border-radius: 0.375rem;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 1.5rem;
  }
  
  .social-message {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
  }
  
  .line {
    height: 1px;
    flex-grow: 1;
    background-color: #374151;
  }
  
  .social-message .message {
    margin: 0 0.75rem;
    font-size: 0.875rem;
    color: #9ca3af;
  }
  
  .social-icons {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
  }
  
  .social-icons .icon {
    padding: 0.75rem;
    border: none;
    background: none;
    cursor: pointer;
  }
  .captcha-container {
    text-align: left;  /* Align the widget to the left */
    background: transparent; /* Make the container transparent */
  }
  
  
  .social-icons .icon:not(:first-child) {
    margin-left: 0.5rem;
    margin-top: 0rem;
  }
  
  .social-icons .icon svg {
    width: 1.25rem;
    height: 1.25rem;
    fill: #cdcdcd;
  }
  
  .signup {
    text-align: center;
    font-size: 0.75rem;
    color: #9ca3af;
  }
  
  .signup a {
    color: #ff8000;
    text-decoration: none;
  }
  
  .signup a:hover {
    text-decoration: underline;
    color: #5aa9ff;
  }

  .goback {
    text-align: right;
    margin-top: .8rem;
    margin-right: .5rem;
    font-size: .9rem;
    color: #9ca3af;
  }
  .goback a {
    color: #cbcbcb;
    text-decoration: none;
  }
  
  .goback a:hover {
    text-decoration: underline;
    color: #5aa9ff;
  }
  @media (max-width: 480px) {
    .form-container {
      width: 100%;
      max-width: calc(100% - (var(10) * 2));
      padding: 1.5rem;
      margin: 0 var(10);
    }
}