body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f4f4f4;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.container {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  width: 360px;
  max-width: 100%;
  padding: 30px;
  text-align: center;
}

h2 {
  color: #333;
  margin-bottom: 20px;
}

input[type="text"], input[type="password"] {
  width: 95%;
  padding: 10px;
  margin: 10px 0;
  border-radius: 5px;
  border: 1px solid #ddd;
  font-size: 14px;
}

input:focus {
  outline: none;
  border-color: #36a2eb;
}


button {
  margin-top: 20px;
  width: 100%;
  background-color: #36a2eb;
  color: white;
  padding: 10px;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

button:hover {
  background-color: #3392e0;
}

.icon {
  font-size: 40px;
  margin-bottom: 10px;
  color: #36a2eb;
}

.showpass label input {
    accent-color: #fff;
    margin-right: 3px;
}
.showpass a {
    color: skyblue;
    text-decoration: none;
}

.showpass a:hover {
    text-decoration: underline;

}
.txtbx label:hover {
    text-decoration: underline;
    cursor: pointer;
}
.showpass .txtbx {
    cursor: pointer;
    color: skyblue;
    user-select: none;
}

.home{
  font-size: 20px;
  width: 100%;
  display: flex;
  justify-content: left;
  margin: 0;
  padding: 0;
  text-decoration: none;
  color: black;
}

.home>a>i{
font-size: 18px;
margin-left: 3px;
}

.home>a>i:hover{
font-size: 25px;
transition: .5s;
margin-left: 0;
}