/* Login page styles for reference - Register page uses sign-up styles below */
  html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
  }

  .sign-up {
    background-color: #fafafa;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    font-family: "Poppins", Helvetica;
    padding: 0;
  }
  
  .container {
    display: flex;
    width: 100%;
    max-width: 1440px;
    height: 100vh;
    position: relative;
    background-color: #fafafa;
    gap: 0;
  }
  
  .overlap {
    width: 50%;
    height: 100vh;
    background-image: url(https://c.animaapp.com/pFXO7pxh/img/image.png);
    background-size: cover;
    background-position: 50% 50%;
    position: relative;
    display: none;
  }
  
  .frame {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    position: absolute;
    top: 30px;
    left: 30px;
    background-color: #ffffff;
    border-radius: 8px;
    border: 1.06px solid #7b849a66;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .frame:hover {
    background-color: #f5f5f5;
  }
  
  .img {
    width: 6px;
    height: 12px;
  }
  
  .text-wrapper {
    font-weight: 400;
    color: #111111;
    font-size: 14px;
    letter-spacing: 0;
  }
  
  .content {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 571px;
    gap: 32px;
    padding: 40px 50px;
    position: relative;
    margin: auto;
    height: 100vh;
    justify-content: center;
    overflow-y: auto;
  }
  
  .header {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .logo-language {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .image {
    width: 200px;
    height: auto;
    object-fit: contain;
  }
  
  .language-selector {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    background-color: #ffffff;
    border-radius: 8px;
    border: 1.06px solid #7b849a66;
    cursor: pointer;
  }
  
  .artwork {
    width: 20px;
    height: 15px;
  }
  
  .text-wrapper-2 {
    font-weight: 400;
    color: #666;
    font-size: 16px;
  }
  
  .frame-6 {
    width: 10px;
    height: 6px;
  }
  
  .title-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  
  .main-title {
    font-weight: 600;
    color: #111111;
    font-size: 36px;
    margin: 0;
    line-height: 1.2;
  }
  
  .subtitle {
    font-weight: 400;
    color: #666;
    font-size: 16px;
    margin: 0;
    line-height: 1.5;
  }
  
  .signup-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  
  .form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .form-label {
    font-weight: 500;
    color: #111111;
    font-size: 16px;
  }
  
  .form-input {
    width: 100%;
    height: 50px;
    padding: 0 15px;
    background-color: #ffffff;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    font-family: "Poppins", Helvetica;
    font-weight: 400;
    color: #121212;
    font-size: 16px;
    transition: border-color 0.3s ease;
  }
  
  .form-input:focus {
    outline: none;
    border-color: #2d0082;
    box-shadow: 0 0 0 3px rgba(45, 0, 130, 0.1);
  }
  
  .form-input::placeholder {
    color: #999;
  }
  
  .password-input-wrapper {
    position: relative;
  }
  
  .password-toggle {
    position: absolute;
    width: 24px;
    height: 24px;
    top: 13px;
    right: 15px;
    background-image: url(https://c.animaapp.com/pFXO7pxh/img/bold---security---eye-1.png);
    background-size: 100% 100%;
    cursor: pointer;
  }
  
  .terms-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 8px;
  }
  
  .terms-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    background-color: #ffffff;
    border-radius: 4px;
    border: 1px solid #2d0082;
    appearance: none;
    cursor: pointer;
    margin-top: 2px;
    flex-shrink: 0;
  }
  
  .terms-checkbox input[type="checkbox"]:checked {
    background-color: #2d0082;
  }
  
  .terms-label {
    font-weight: 400;
    color: #666;
    font-size: 14px;
    line-height: 1.5;
  }
  
  .terms-link {
    font-weight: 500;
    color: #2d0082;
    text-decoration: none;
  }
  
  .terms-link:hover {
    text-decoration: underline;
  }
  
  .signup-button {
    width: 100%;
    height: 50px;
    background-color: #2d0082;
    border: none;
    border-radius: 8px;
    font-family: "Poppins", Helvetica;
    font-weight: 600;
    color: #ffffff;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
  }
  
  .signup-button:hover {
    background-color: #1a0047;
    transform: translateY(-2px);
  }
  
  .signup-button:active {
    transform: translateY(0);
  }
  
  .login-link {
    font-weight: 400;
    color: #666;
    font-size: 14px;
    text-align: center;
    margin-top: 8px;
  }
  
  .login-here {
    font-weight: 600;
    color: #2d0082;
    text-decoration: none;
  }
  
  .login-here:hover {
    text-decoration: underline;
  }
  
  /* Responsive Design */
  @media (min-width: 768px) {
    .overlap {
      display: block;
    }
    
    .container {
      height: auto;
    }
  }
  
  @media (max-width: 767px) {
    .content {
      padding: 30px 20px;
      max-width: 100%;
    }
    
    .main-title {
      font-size: 28px;
    }
    
    .subtitle {
      font-size: 14px;
    }
    
    .image {
      width: 150px;
    }
    
    .logo-language {
      margin-bottom: 20px;
    }
  }
  