/* Import Google font - Poppins */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Lilita+One&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "inter", sans-serif;
}
.container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background-color: #1A72FA;
}

.gcash-img {
  margin-bottom: 2rem;
}

.form-container {
  position: relative;
  max-width: 700px;
  width: 100%;
  background: #fff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.signin-text {
  display: flex;
  justify-content: center;
  font-family: sans-serif;
  font-size: 20px;
  margin-top: 20px;
  font-weight: 600;
  color: #002CB8;
}


.form-container .form {
  margin-top: 30px;
}
.form .input-box {
  width: 100%;
  margin-top: 20px;
}
.input-box label {
  color: #002CB8;
  font-weight: 600;
}
.form :where(.input-box input) {
  position: relative;
  height: 50px;
  width: 100%;
  outline: none;
  font-size: 1rem;
  color: #707070;
  margin-top: 8px;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 0 15px;
}

.input-box input:focus {
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
}

.check-box {
  display: flex;
  margin-top: 20px;
  gap: 5px;
}

.form button {
  height: 55px;
  width: 100%;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  margin-top: 25px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.2s ease;
  background-color: #0038B3;
}
.form button:hover {
  background: #8697bd;
}

.forgot-password {
  margin-top: 18px;
  font-weight: 600;
  font-size: 16px;
  color: #002CB8;
  text-align: center;
}

.signin-click {
  margin-top: 25px;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
}

.signin-click a {
  text-decoration: none;
  color: #002CB8;
}

/*Responsive*/
@media screen and (max-width: 500px) {

 .signin-click {
  font-size: 15px;
}
 
}
