* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  .back-button{
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  }

  .auth-home {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: #ffffff;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    position: relative;
  }

  .auth-home::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
      radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.03) 0%, transparent 50%),
      radial-gradient(circle at 80% 20%, rgba(255, 107, 107, 0.03) 0%, transparent 50%),
      radial-gradient(circle at 40% 40%, rgba(255, 200, 87, 0.03) 0%, transparent 50%);
    pointer-events: none;
  }

  .auth-container {
    width: 100%;
    max-width: 450px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 40px 35px !important;
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 
      0 32px 64px rgba(0, 0, 0, 0.08),
      0 8px 32px rgba(0, 0, 0, 0.04),
      inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
  }

  .auth-container:hover {
    transform: translateY(-4px);
    box-shadow: 
      0 40px 80px rgba(0, 0, 0, 0.12),
      0 12px 40px rgba(0, 0, 0, 0.08),
      inset 0 1px 0 rgba(255, 255, 255, 0.9);
  }

  /* Override jQuery UI tabs styling */
  .ui-tabs {
    border: none;
    padding: 0;
  }

  .ui-tabs .ui-tabs-nav {
    border: none;
    background: none;
    padding: 0;
    margin: 0 0 32px 0;
    border-radius: 16px;
    background: rgba(248, 250, 252, 0.8);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
  }

  .ui-tabs .ui-tabs-nav li {
    border: none;
    background: none;
    margin: 0;
    padding: 0;
    position: relative;
    top: 0;
    float: left;
    width: 50%;
  }

  .ui-tabs .ui-tabs-nav li a {
    display: block;
    padding: 16px 24px;
    text-decoration: none;
    color: rgba(0, 0, 0, 0.6);
    font-weight: 600;
    font-size: 15px;
    text-align: center;
    border: none;
    background: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
    border-radius: 12px;
  }

  .ui-tabs .ui-tabs-nav li.ui-tabs-active a {
    color: #667eea;
    font-weight: 700;
  }

  .ui-tabs .ui-tabs-nav li.ui-tabs-active::before {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    right: 4px;
    bottom: 4px;
    background: white;
    border-radius: 12px;
    box-shadow: 
      0 4px 12px rgba(0, 0, 0, 0.08),
      0 2px 6px rgba(0, 0, 0, 0.04);
    z-index: 1;
  }

  .ui-tabs .ui-tabs-panel {
    border: none;
    padding: 0;
    background: none;
  }

  /* Form styling */
  form {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  label {
    font-weight: 600;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.8);
    margin-bottom: 8px !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding:0 15px;
  }

  input {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    font-size: 16px;
    font-weight: 400;
    background: rgba(248, 250, 252, 0.5);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
    font-family: inherit;
  }

  input:focus {
    border-color: #667eea;
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 
      0 8px 24px rgba(102, 126, 234, 0.15),
      0 0 0 4px rgba(102, 126, 234, 0.1);
  }

  input::placeholder {
    color: rgba(0, 0, 0, 0.4);
    transition: color 0.3s ease;
  }

  input:focus::placeholder {
    color: rgba(0, 0, 0, 0.3);
  }

  button {
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.25);
    font-family: inherit;
    margin-top: 12px;
  }

  button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  }

  button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(102, 126, 234, 0.35);
  }

  button:hover::before {
    left: 100%;
  }

  button:active {
    transform: translateY(0);
    transition: transform 0.1s ease;
  }

  /* Remove jQuery UI corner classes */
  .ui-corner-all,
  .ui-corner-top,
  .ui-corner-left,
  .ui-corner-tl {
    border-radius: 0 !important;
  }

  /* Animation for form switching */
  .ui-tabs-panel {
    animation: fadeInUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Responsive design */
  @media (max-width: 480px) {
    .auth-container {
      padding: 32px 24px;
      margin: 16px;
    }
    
    .ui-tabs .ui-tabs-nav li a {
      padding: 14px 20px;
      font-size: 14px;
    }
  }