body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-image: url("background.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

#formTitle {
  font-size: 30px;
  text-align: center;
}

label {
  display: block;
  font-size: 16px;
  margin-bottom: 5px;
  text-align: center;
}

input[type="text"],
input[type="password"] {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  height: 40px;
}

button {
  width: 100%;
  padding: 15px;
  background-color: #000000;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  margin-top: 10px;
}

button:hover {
  background-color: #272727;
}

.container {
  max-width: 250px;
  margin: 100px auto;
  padding: 40px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  position: relative;
  margin-right: 15%;
  margin-top: 15%;
  height: auto;
}

.logo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: -48px;
  left: 50%;
  transform: translateX(-50%);
}

.logo img {
  width: 150px;
  height: auto;
  object-fit: cover;
}

.password-wrapper {
  position: relative;
}

.password-toggle {
  position: absolute;
  top: 37%;
  right: 10px;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  cursor: pointer;

}



@media (max-width: 280px) {
  .container {
    max-width: 140px;
    margin: 100px auto;
  }

  #formTitle {
    font-size: 22px;
    text-align: center;
  }

  label {
    display: block;
    font-size: 12px;
  }

  input[type="text"],
  input[type="password"] {
    height: 30px;
  }

  .password-toggle {
    top: 35%;
    right: 5px;
  
  
  }
  
}

button[disabled] {
  background-color: #ccc;
}

@media (min-width: 281px) and (max-width: 480px) {
  .container {
    max-width: 200px;
    margin: 100px auto;
  }

  #formTitle {
    font-size: 23px;
    text-align: center;
  }

  input[type="text"],
  input[type="password"] {
    height: 35px;
  }

  .logo {
    width: 95px;
    height: 95px;
  }

  label {
    display: block;
    font-size: 14px;
  }

  
  .password-toggle {
    top: 34%;
  
  
  }

}

@media (min-width: 481px) and (max-width: 840px) {
  .container {
    margin: 100px auto;
  }
}
