body {
  margin: 0;
  padding: 0;
  background-color: #0f172a;
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.login-container {
  background-color: #0f172a;
  border: 2px solid #00bfff;
  border-radius: 10px;
  padding: 40px 30px;
  width: 300px;
  box-shadow: 0 0 10px #000;
  text-align: center;
  position: relative;
}

.avatar {
  width: 80px;
  height: 80px;
  border: 3px solid #0f172a;
  border-radius: 50%;
  overflow: hidden;
  margin: -70px auto 20px auto;
  background-color: #0f172a;
}
.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.login-form input {
  width: 75%;
  padding: 12px;
  margin: 10px 0;
  border: 2px solid cyan;
  border-radius: 4px;
  background-color: #f8fafc;
  color: #000;
  font-size: 16px;
}

.login-form button {
  width: 100%;
  padding: 12px;
  background-color: #00bfff;
  border: none;
  color: white;
  font-weight: bold;
  font-size: 16px;
  margin-top: 10px;
  border-radius: 4px;
  cursor: pointer;
  transition: 0.3s;
}
.login-form button:hover {
  background-color: #0284c7;
}

.options {
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
  font-size: 14px;
  color: white;
}
.options label {
  display: flex;
  align-items: center;
}
.options a {
  color: #60a5fa;
  text-decoration: none;
}
.options a:hover {
  text-decoration: underline;
}

h1 {
    text-align: center;
    margin: auto;
}