/* General Reset */
body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: linear-gradient(135deg, #021045, #946fc7);
    color: #fff;
  }
  
  /* Container Styling */
  .container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
  }
  
  /* Login Box Styling */
  .login-box {
    background: rgba(255, 255, 255, 0.134);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 350px;
  }
  
  .login-box h2 {
    margin-bottom: 20px;
    font-weight: bold;
    letter-spacing: 1px;
  }
  
  /* Input Field Styling */
  .input-box {
    position: relative;
    margin-bottom: 30px;
  }
  
  .input-box input {
    width: 100%;
    padding: 10px 0;
    font-size: 16px;
    color: #fff;
    background: transparent;
    border: none;
    border-bottom: 2px solid #fff;
    outline: none;
  }
  
  .input-box label {
    position: absolute;
    top: 10px;
    left: 0;
    color: #ccc;
    transition: 0.3s;
    pointer-events: none;
  }
  
  .input-box input:focus ~ label,
  .input-box input:valid ~ label {
    top: -20px;
    font-size: 12px;
    color: #6e8efb;
  }
  
  /* Button Styling */
  .btn {
    width: 100%;
    padding: 10px;
    border: none;
    background: #6e8efb;
    color: #fff;
    font-size: 16px;
    border-radius: 25px;
    cursor: pointer;
    transition: 0.3s;
  }
  
  .btn:hover {
    background: #a777e3;
  }
  
  /* Forgot Password Styling */
  .forgot {
    margin-top: 15px;
  }
  
  .forgot a {
    color: #6e8efb;
    text-decoration: none;
    transition: 0.3s;
  }
  
  .forgot a:hover {
    color: #fff;
  }
  