/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: rgb(23, 49, 77);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    background-color: transparent;
    padding: 30px 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    width: 100%;
    max-width: 400px;
}

h2 {
    text-align: center;
    margin-bottom: 20px;
    color: white;
}

/* ============= start input type Styles ============== */
.form-group {
    position: relative;
    margin-bottom: 0;
  }

  
  .form-group password {
    width: 100%;
    padding: 12px 50px;
    border: 2px solid rgba(0, 213, 255, 0.64);
    border-radius: 8px;
    font-size: 18px;
    transition: all 0.3s;
    background-color: transparent;
    color: white;
    margin-bottom: 10px;
  }

    
    .form-group .toggle-password {
      position: absolute;
      right: 10px;
      top: 65%;
      transform: translateY(-50%);
      cursor: pointer;
      user-select: none;
      font-size: 1.2em;
      color:white;
    }

  .form-group input {
    width: 100%;
    padding: 12px 50px;
    border: 2px solid rgba(0, 213, 255, 0.64);
    border-radius: 8px;
    font-size: 18px;
    transition: all 0.3s;
    background-color: transparent;
    color: white;
    margin-bottom: 10px;
  }

  .form-group input:focus {
    border-color: rgba(0, 213, 255, 0.64);
    box-shadow: 0 0 0 2px rgba(0, 213, 255, 0.64);
    outline: none;
    background-color: transparent;
  }

  .form-group i {
    position: absolute;
    left: 15px;
    top: 45px;
    color: white;
    font-size: 18px;
    z-index: 2;
  }

  .form-group label {
    display: flex;
    margin-bottom: 7px;
    font-weight: 600;
    color: white;
    font-size: 16px;
    padding-left: 5px;
    position: relative;
  }

  .form-group label span {
    color: rgba(0, 213, 255, 0.64);
    font-size: 16px;
    margin-left: 5px;
  }

  /* ============= end input type Styles ============== */



p {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
}

a {
    color: #1E90FF;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

ul.flashes {
    list-style-type: none;
    padding: 0;
    margin-bottom: 20px;
}

ul.flashes li {
    background-color: #ffe0e0;
    color: #d32f2f;
    padding: 10px;
    border-left: 4px solid #d32f2f;
    margin-bottom: 10px;
    border-radius: 6px;
}


  /* ========== start liquid button ============ */
  .btn-liquid {
    width: 100%;
    margin: 6px 0 25px 0;
    padding: 12px 24px;
    border: 2px solid rgba(0, 213, 255, 0.64);
    background: transparent;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: color 0.3s ease;
    z-index: 1;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 212, 255, 0.5);
  }

  .btn-liquid i {
    padding-right: 10px;
  }

  .btn-liquid::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: rgba(4, 203, 243, 0.38);
    z-index: -1;
    transition: height 0.3s ease;
  }

  .btn-liquid:hover {
    color: white;
  }

  .btn-liquid:hover::before {
    height: 100%;
  }

  /* ========== end liquid button ============= */

  @media (max-width: 480px) {
    .container {
      width: 90%;
      padding: 50px 20px;
    }
  }