<?php header("Cache-Control: no-cache, must-revalidate");  ?>

<!doctype html>
<html lang="en">

<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <title>Account Opening</title>
  <link href="css/bootstrap.min.css" rel="stylesheet">
  <!-- Font Awesome Icons -->
  <link rel="stylesheet" href="css/fontawesome-free-6.6.0-web/css/all.min.css">
  <link rel="stylesheet" href="css/style.css">

  <!--  -->
  <style>
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    @font-face {
      font-family: "Circular Std Book";
      /* src: url(assets/fonts/FontsFree-Net-Circular-Std-Book.ttf); */
      src: url(FontsFree-Net-Circular-Std-Book.ttf);
    }

    html,
    body {
      font-family: "Circular Std Book";
      font-style: normal;
      font-weight: normal;
      font-size: 14px;
      color: #71748d;
      background-color: #efeff6;
      -webkit-font-smoothing: antialiased;
    }


    .login-container {
      margin: 50px auto;
      background-color: #ffffff;
      padding: 50px;
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      text-align: center;
      width: 360px;


    }

    .login-header {
      /* display: flex;
  justify-content: center; */
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .login-header .logo {
      width: 300px;
      /* margin-bottom: 10px; */

    }

    h1 {
      font-size: 18px;
      color: #28a745;
      margin: 10px 0;
    }

    .login-form {
      margin: 20px 0;
      font-size: 14px;
      font-weight: 500;
    }

    .input-field {
      width: 100%;
      padding: 10px;
      margin: 10px 0;
      border-radius: 4px;
      border: 1px solid #ccc;
    }

    .login-button {
      width: 100%;
      padding: 10px;
      background-color: #003366;
      color: #fff;
      border: none;
      border-radius: 4px;
      cursor: pointer;
    }

    .login-button:hover {
      background-color: #005599;
    }
  </style>
</head>

<body>


  <div class="login-container">
    <div class="login-header">
      <img src="images/ForeignCornerBg.png" alt="FSIB Logo" class="logo">
      <h1>Account Opening Request</h1>
      <p>Please enter your user information.</p>
    </div>
    <form class="login-form" action="login-api.php" method="post">
      <input type="text" placeholder="Username" class="input-field" name="username" id="username">
      <input type="password" placeholder="Password" class="input-field" name="password" id="password">
      <button type="submit" class="login-button" name="login">Login</button>
    </form>

  </div>




  <script src="js/bootstrap5.bundle.min.js"></script>
</body>

</html>