.form-container {
    box-sizing: border-box;
    width: 100%;
    max-width: 450px;
    padding: 20px;

    /*Y scrollbar*/
    overflow-y: auto; 
  }
  
  .signup-form {
    background: 	#F8F8F8;
    padding: 25px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  .signup-form h2 {
    margin: 0 0 15px;
    text-align: center;
    color: #333;
  }
  
  .signup-form input,
  .signup-form select,
  .signup-form button {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
  }
  
  .signup-form button {
    background: #2d545e;
    color: #fff;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  .signup-form button:hover {
    background: #0BDA51;
  }
  
  .password-group {
    position: relative;
  }
  
  .password-group input {
    padding-right: 40px;
  }
  
  .toggle-password {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 1.2rem;
  }
  
  .checkbox-group {
  
    font-size: 0.9rem;
  }
  
  .checkbox-group a {
    color: #ff2c55;
    text-decoration: none;
  }
  
  .checkbox-group a:hover {
    text-decoration: underline;
  }
  
    .image-preview {
      display: block;
      margin: auto;
      width: 200px;
      height: 200px;
      border-radius: 50%;
      overflow: hidden;
      border: 4px solid #ccc;
    
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    }
  
    .image-preview img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    

    
    .custom-upload-btn {
      background-color: 	#A9A9A9;
      color: #000;
      padding: 12px 14px;
      border: 1px solid #ccc;
      border-radius: 8px;
  
      cursor: pointer;
      font-size: 16px;
      font-weight: bold;
      transition: background 0.2s ease;
      
      display: block;
    width: 100%;
    border: none;
    background-color: #04AA6D;
    color: white;
    padding: 14px 28px;
    font-size: 16px;
    cursor: pointer;
    text-align: center;
    }
    
  
  /* Responsive styles */
  @media (max-width: 480px) {
    .signup-form {
      padding: 20px 15px;
    }
  
    .signup-form h2 {
      font-size: 1.5rem;
    }
  
    .toggle-password {
      font-size: 1rem;
    }
  }
