body {
  margin: 0;
  font-family: 'IBM Plex Sans', sans-serif;
  background-color: #132322;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}
.page-header {
  position: absolute;
  top: 10px;
  width: 100%;
}
.page-header h1{
  font-size: 38px;
  font-weight: 600;
  margin: 10px;
  padding:; 20px;
  color: #fff;
}

.login-container {
  background-color: #bbdcf4;
  padding: 40px;
  border-radius: 10px;
  width: 360px;
  box-shadow: 0 0 20px rgba(236, 202, 30, 0.5);
}

.logo {
  display: block;
  margin: 0 auto 30px;
}

.logo-container {
  display: block;
  margin: 0 auto 30px;
  padding-bottom: 50px;
}
.form-group {
  margin-bottom: 20px;
}

label {
  display: block;
  font-size: 14px;
  margin-bottom: 5px;
  color: #0d0c0c;
}

input[type="text"],
input[type="password"] {
  width: 100%;
  padding: 12px;
  border-radius: 4px;
  border: 1px solid #eea30b;
  background: #2a2a2a;
  color: #070606;
  font-size: 14px;
}

input:focus { 
  background-color: yellow;
}
input:focus {
  outline: 2px solid rgb(219, 11, 11);
}

.password-wrapper {
  position: relative;
}

.password-wrapper button {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: #aaa;
  cursor: pointer;
  font-size: 16px;
}

.submit-btn {
  width: 100%;
  padding: 12px;
  background-color: #eb2e4a;
  border: none;
  border-radius: 4px;
  font-weight: bold;
  font-size: 15px;
  color: #fff;
  cursor: pointer;
  margin-top: 10px;
  transition: background 0.3s;
}

.submit-btn:hover {
  background-color: #c3253d;
}

.submit-btn:focus {
  outline: 3px solid #000000;
}



.home-btn {
  display: inline-block;
  margin-top: 60px;
  margin-left: 10em;
  width: 30%;
  padding: 12px;
  background-color: #3a86ff;
  color: white;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  font-size: 15px;
  border-radius: 4px;
  transition: background 0.3s;
}

.home-btn:hover {
  background-color: #1e5edc;
}

.home-btn:focus {
  outline: 3px solid yellow;
}

.success-message {
  text-align: center;
  color: white;
  font-size: 20px;
}
