* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  background-color: #131F24;
  font-family: 'Inter', sans-serif;
  color: #D9D9D9;
}

.login-container {
  width: 300px;
  margin: 100px auto;
  padding: 20px;
  text-align: center;
}

.login-container h2 {
  margin-bottom: 20px;
  font-size: 24px;
}

.form-group {
  margin-bottom: 15px;
  text-align: left;
  position: relative;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

.form-group input {
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 4px;
  background-color: #2A3A3F;
  color: #D9D9D9;
}

.form-group a.forgot-link {
  position: absolute;
  right: 10px;
  top: 67%;
  transform: translateY(-50%);
  font-size: 12px;
  color: #494949;
  text-decoration: none;
  cursor: pointer;
}

.form-group a.forgot-link:hover {
  text-decoration: underline;
}

.btn {
  display: block;
  width: 100%;
  padding: 10px;
  margin-top: 10px;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  text-align: center;
}

.btn-login {
  background-color: #20ACE8;
  color: #131F24;
}

.btn-login:hover {
  opacity: 0.9;
}

.signup {
  margin-top: 15px;
  font-size: 14px;
  text-align: center;
}

.signup a {
  color: #20ACE8;
  text-decoration: none;
}

.signup a:hover {
  text-decoration: underline;
}

.logo {
  width: 170px;
}