@import url("https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Ubuntu";
}

/* Apply a background image to the body */
body {
  margin: 0;
  padding: 0;
  height: 100vh;
  background: url("../assets/login.webp") no-repeat center center/cover;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Create the container for centering the form */
.login-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

/* Style the login form */
.login-form {
  background-color: rgba(255, 255, 255, 0.9);
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 400px;
  text-align: center;
}

h2 {
  font-size: 28px;
  color: #333;
  margin-bottom: 20px;
}

/* Style the input fields */
.input-group {
  margin-bottom: 20px;
  text-align: left;
  display: flex;
  flex-direction: column;
}

.input-group label {
  font-size: 14px;
  color: #333;
}

.input-group input {
  padding: 12px;
  margin-top: 5px;
  font-weight: 200;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 14px;
  outline: none;
}

.input-group input:focus {
  border-color: #81001f;
}

/* Style the button */
.btn {
  background-color: #81001f;
  color: white;
  border: none;
  padding: 12px;
  width: 100%;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
}

.btn:hover {
  background-color: #a70027;
}

/* Style the forgotten password link */
.forgot-password {
  display: block;
  text-align: start;
  margin: 15px 0;
  color: #007bff;
  font-size: 14px;
  text-decoration: none;
}

.forgot-password:hover {
  text-decoration: underline;
}
