body {
  font-family: "Poppins", sans-serif;
  background: linear-gradient(135deg, #002b5b 0%, #0056b3 100%);
  margin: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}


.login-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 20px;
}


.login-box {
  background: #ffffff;
  width: 420px;
  padding: 40px 35px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  text-align: center;
}

.logo img {
  width: 80px;
  margin-bottom: 10px;
}

.logo h1 {
  font-size: 22px;
  color: #002b5b;
  margin-bottom: 5px;
}

.logo p {
  color: #666;
  font-size: 14px;
  margin-bottom: 30px;
}


.form-group {
  text-align: left;
  margin-bottom: 20px;
}

label {
  display: block;
  color: #002b5b;
  font-weight: 500;
  margin-bottom: 8px;
}

input {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s;
}

input:focus {
  border-color: #0056b3;
}


button,
input[type="submit"] {
  width: 100%;
  background-color: #0056b3;
  color: #fff;
  padding: 14px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover,
input[type="submit"]:hover {
  background-color: #003f82;
}


a {
  color: #0056b3;
  text-decoration: none;
  font-weight: 500;
}

a:hover {
  text-decoration: underline;
}


@media (max-width: 480px) {
  .login-box {
    width: 90%;
    padding: 30px 20px;
  }

  .logo h1 {
    font-size: 20px;
  }

  .logo p {
    font-size: 13px;
  }
}
