* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
    background: linear-gradient(to bottom, #8e2de2, #4a00e0);
    position: relative;
}




.login-container {
    background: rgba(255, 255, 255, 0.151);
    backdrop-filter: blur(15px);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    width: 350px;
    color: white;
    position: relative;
    z-index: 10;
}

h1 {
    margin-bottom: 1rem;
}

input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: none;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 1rem;
    outline: none;
}

input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

button {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    opacity: 0.8;
}

#login-btn {
    background: #ffffffb7;
    color: rgba(0, 0, 0, 0.726);
}

#register-btn {
    background: #2b2b2bb4;
    color: white;
}

.google-btn {
    background: #ffffffb7;
    color: black;
    font-weight: bold;
}

hr {
    margin: 20px 0;
    border: none;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
}

#gradient-canvas {
    width: 100%;
    height: 100%;
    --gradient-color-1: #a960ee;
    --gradient-color-2: #ff333d;
    --gradient-color-3: #90e0ff;
    --gradient-color-4: #ffcb57;
    z-index: 0;
    position: absolute;
  }
  .title {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      background: rgb(255 255 255 / 26%);
      border-radius: 10px;
      border: 1px solid rgb(255 255 255 / 15%);
      position: absolute;
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      font-size: 30px;
      font-family: sans-serif;
      padding: 30px 40px;
        text-align: center;
      line-height: 1.4;
  }