*{
  padding:0%;
  margin: 0%;
}
body,html {
  font-family: Arial;
  background: #f2f2f2;
  display: grid;
  overflow-x: hidden;
  width: 100%;
}
header{
  width: 100%;
  background-color: blueviolet;
  color:white;
  padding: 20px;
  
}
header h1{
  font-size: 30px;
}
.home-icon {
  position: absolute;
  top: 25px;
  right: 25px;
  font-size: 24px;
  color: white; /* Change to your preferred color */
  text-decoration: none;
}

.home-icon:hover {
  color: #0056b3;
}


main{
  margin-top: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.container {
  background: white;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  max-width: 300px;
}
form{
  margin-top: 30px;
}
h2{
  font-size: 28px;
}
input{
  padding: 5px ;
  padding-right: 40px;
  border-radius: 5px;
  font-size: 15px;
}
input[type="password"] {
  padding: 6px ;
  border-radius: 5px;
  font-size: 15px;
}

button {
  margin-top: 20px;
  background: blueviolet;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  padding: 10px 20px;
}
a{
  text-decoration: none;
  font-size: 14px;
}
a:hover{
  color: black;
}
p{
  font-size: 12px;
}

.password-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.password-wrapper .password-field {
  width: 90%;
  padding-right: 40px;
}

.toggle-password-icon {
  position: absolute;
  right: 10px;
  color: #c5c3c3ea;
  cursor: pointer;
}
