  * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: 'Segoe UI', sans-serif;
      background-image: url('../images/background.png');
      background-size: cover;
      background-repeat: no-repeat;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 90vh;
    }

    .form-container {
      background-color: #fff;
      padding: 2rem;
      width: 95%;
      max-width: 480px;
      border-radius: 8px;
      margin: 1rem;
    }

    .form-container h2 {
      text-align: center;
      margin-bottom: 1.5rem;
      color: #001334;
    }

    .error {
    background-color: #ffe6e6;
    color: #cc0000;
    border: 1px solid #cc0000;
    padding: 12px 16px;
    margin: 20px auto;
    width: 100%;
    max-width: 500px;
    border-radius: 8px;
    font-family: Arial, sans-serif;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
  }

    form input {
      width: 100%;
      padding: 12px 40px 12px 12px;
      margin-bottom: 1rem;
      border: 1px solid #001334;
      outline: none;
      border-radius: 10px;
      font-size: 1rem;
      background-color: #fff;
    }

    .input-group {
      position: relative;
    }

    .input-group .toggle-password {
      position: absolute;
      top: 40%;
      right: 12px;
      transform: translateY(-50%);
      border: none;
      background: none;
      cursor: pointer;
      color: #888;
      font-size: 1rem;
    }

    button[type="submit"] {
      width: 100%;
      padding: 12px;
      background-color: #001334;
      color: #fff;
      border: none;
      border-radius: 10px;
      font-size: 1rem;
      cursor: pointer;
    }

    .bottom-text {
      text-align: center;
      margin-top: 1rem;
    }

    .bottom-text a {
      color: #001334;
      text-decoration: none;
    }