* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background-color: rgb(19, 127, 224);
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.login-container {
  text-align: center;
}

.avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-bottom: 20px;
  object-fit: cover;
}

h2 {
  color: white;
  margin-bottom: 30px;
  font-size: 22px;
}

form {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 300px;
  margin: 0 auto;
}

.input-group {
  position: relative;
  width: 100%;
  margin-bottom: 20px;
}

.input-group i.fa-user,
.input-group i.fa-lock {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  color: #888;
}

.input-group input {
  width: 100%;
  padding: 12px 45px 12px 40px;
  border: none;
  border-radius: 25px;
  background-color: white;
  color: rgb(0, 0, 0);
  font-size: 14px;
  outline: none;
}

.input-group input::placeholder {
  color: #aaa;
}

.toggle-password {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: #888;
}

button {
  width: 100%;
  padding: 12px;
  background-color: rgb(58, 57, 57);
  color: white;
  font-weight: bold;
  border: none;
  border-radius: 25px;
  font-size: 14px;
  margin-bottom: 15px;
  cursor: pointer;
}

.forgot {
  color: #bbb;
  font-size: 13px;
}
