* {
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #f5f5f5;
  margin: 0;
  padding: 0;
}

.container {
  background: white;
  padding: 40px 30px 200px;
  width: 100%;
  margin: 0 auto;
  border-radius: 0;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo {
  width: 250px;
  margin: 20px auto;
  display: block;
}

h2 {
  font-size: 26px;
  text-align: center;
  margin-bottom: 30px;
}

form {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.input-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-width: 400px;
  margin-top: 50px;
  margin-bottom: 60px;
}
}

.input-group label {
  font-size: 16px;
  margin-bottom: 6px;
  text-align: left;
}

.input-group input[type="text"] {
  padding: 12px;
  font-size: 16px;
  border-radius: 10px;
  border: 1px solid #ccc;
  width: 100%;
}

.input-group input[type="text"]:focus {
  outline: none;
  border-color: #1b396f;
}

button {
  background-color: #1b396f;
  color: white;
  border: none;
  cursor: pointer;
  font-family: Poppins, sans-serif;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 10px;
  transition: background-color 0.3s ease;
  width: 100%;
  max-width: 300px;
  margin-bottom: 10px;
}

button:hover {
  background-color: #132549;
}

button i {
  color: white;
}

footer {
  background-color: #1b396f;
  text-align: center;
  padding: 60px 0;
  color: white;
  font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .container {
    padding: 30px 20px;
  }

  .input-group {
    width: 100%;
  }

  .input-group input[type="text"] {
    font-size: 18px;
  }

  button {
    font-size: 18px;
    padding: 16px;
    margin-top: 10px;
  }
}










