  * {
      box-sizing: border-box;
  }

  body {
      margin: 0;
      min-height: 100vh;
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
      background-image: url(./assets/image/bg-image-clouds.jpg);
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 24px;
  }

 @media screen and (max-width: 420px) {
      body::before {
         display: none;
      }
      body{
            background-image: none;
      }
      .card{
        box-shadow: none;
        backdrop-filter: none;
      }
  }

  .logo {
      position: absolute;
      top: 32px;
      left: 40px;
      display: flex;
      align-items: center;
      gap: 10px;
      z-index: 2;
  }

  .logo-mark {
      width: 34px;
      height: 34px;
      border-radius: 10px;
      background: #17181c;
      display: flex;
      align-items: center;
      justify-content: center;
  }

  .logo-mark svg {
      width: 18px;
      height: 18px;
  }

  .logo-text {
      font-size: 19px;
      font-weight: 700;
      color: #16181c;
      letter-spacing: -0.01em;
  }

  .card {
      position: relative;
      z-index: 2;
      width: 100%;
      max-width: 360px;
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.55) 0%, rgba(255, 255, 255, 0.75) 100%);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border: 1px solid rgba(255, 255, 255, 0.6);
      border-radius: 28px;
      padding: 40px 32px 28px;
      box-shadow:
          0 20px 60px rgba(30, 80, 130, 0.18),
          inset 0 1px 0 rgba(255, 255, 255, 0.8);
      text-align: center;
      margin-bottom: 40px;
  }

  @media screen and (max-width: 420px) {

      .card{
        box-shadow: none;
        backdrop-filter: none;
      }
  }

  .icon-badge {
      width: 56px;
      height: 56px;
      margin: 0 auto 20px;
      border-radius: 16px;
      background: rgba(255, 255, 255, 0.6);
      border: 1px solid rgba(255, 255, 255, 0.7);
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 14px rgba(30, 80, 130, 0.08);
  }

  .icon-badge svg {
      width: 22px;
      height: 22px;
      stroke: #2b2f36;
  }

  .card h1 {
      margin: 0 0 8px;
      font-size: 22px;
      font-weight: 700;
      color: #171a1f;
      letter-spacing: -0.01em;
  }

  .card p.subtitle {
      margin: 0 0 26px;
      font-size: 13.5px;
      line-height: 1.5;
      color: #5c6470;
      padding: 0 6px;
  }

  .field {
      position: relative;
      margin-bottom: 12px;
  }

  .field input {
      width: 100%;
      padding: 13px 40px 13px 38px;
      border-radius: 12px;
      border: 1px solid rgba(120, 140, 160, 0.25);
      background: rgba(255, 255, 255, 0.55);
      font-size: 14px;
      color: #2b2f36;
      outline: none;
      transition: border-color 0.15s ease, background 0.15s ease;
  }

  .field input::placeholder {
      color: #8b93a1;
  }

  .field input:focus {
      border-color: rgba(60, 100, 140, 0.5);
      background: rgba(255, 255, 255, 0.8);
  }

  .field-icon {
      position: absolute;
      left: 13px;
      top: 50%;
      transform: translateY(-50%);
      width: 15px;
      height: 15px;
      color: #7c8593;
      pointer-events: none;
  }

  .field-icon svg {
      width: 100%;
      height: 100%;
  }

  .toggle-visibility {
      position: absolute;
      right: 12px;
      top: 50%;
      transform: translateY(-50%);
      background: none;
      border: none;
      padding: 0;
      cursor: pointer;
      color: #7c8593;
      width: 17px;
      height: 17px;
      display: flex;
      align-items: center;
      justify-content: center;
  }

  .toggle-visibility svg {
      width: 100%;
      height: 100%;
  }

  .forgot {
      text-align: right;
      margin: 6px 2px 16px;
  }

  .forgot a {
      font-size: 12.5px;
      color: #1c1f24;
      text-decoration: none;
      font-weight: 500;
  }

  .forgot a:hover {
      text-decoration: underline;
  }

  .sign-in {
      width: 100%;
      padding: 14px;
      border: none;
      margin-bottom: 12px;
      border-radius: 12px;
       background: linear-gradient(180deg, #24262b 0%, #131417 100%);
      color: #fff;
      font-size: 14.5px;
      font-weight: 600;
      cursor: pointer;
      box-shadow: 0 8px 20px rgba(10, 12, 16, 0.25);
      transition: transform 0.12s ease, box-shadow 0.12s ease;
  }

  .sign-up {
      width: 100%;
      padding: 14px;
      border-radius: 12px;
      margin-bottom: 12px;
      background: linear-gradient(180deg, #24262b 0%, #131417 100%);
      color: #fff;
      font-size: 14.5px;
      font-weight: 600;
      cursor: pointer;
      box-shadow: 0 8px 20px rgba(10, 12, 16, 0.25);
      transition: transform 0.12s ease, box-shadow 0.12s ease;
  }

  .sign-in:hover {
      transform: translateY(-1px);
      box-shadow: 0 10px 24px rgba(10, 12, 16, 0.3);
  }

  .sign-up:active {
      transform: translateY(0);
  }

  .sign-up:hover {
      transform: translateY(-1px);
      box-shadow: 0 10px 24px rgba(10, 12, 16, 0.3);
  }

  .sign-in:active {
      transform: translateY(0);
  }

  .sign-in_sign-up {
    color: #1c1f24;
    text-decoration: none;

  }
  .sign-in_sign-up span{
    font:700px;

  }
  #sisu-1{
    font-weight: 700;
  }

  .divider {
      display: flex;
      align-items: center;
      gap: 10px;
      margin: 22px 0 16px;
  }

  .divider::before,
  .divider::after {
      content: "";
      flex: 1;
      border-top: 1px dashed rgba(120, 130, 145, 0.4);
  }

  .divider span {
      font-size: 11.5px;
      color: #7c8593;
      white-space: nowrap;
  }

  .social-row {
      display: flex;
      gap: 10px;
  }

  .social-btn {
      flex: 1;
      padding: 11px 0;
      border-radius: 12px;
      border: 1px solid rgba(120, 140, 160, 0.2);
      background: rgba(255, 255, 255, 0.65);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: background 0.15s ease, transform 0.12s ease;
  }

  .social-btn:hover {
      background: rgba(255, 255, 255, 0.9);
      transform: translateY(-1px);
  }

  .social-btn svg {
      width: 18px;
      height: 18px;
  }

  @media (max-width: 420px) {
      .logo {
          top: 20px;
          left: 20px;
      }

      .card {
          padding: 32px 22px 24px;
      }
  }