body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.login-container {
  background-color: #fff;
  border-radius: 8px;
  width: 400px;
  padding: 40px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.login-form h1 {
  color: #333;
  text-align: center;
  margin-bottom: 20px;
}

.input-field {
  position: relative;
  margin-bottom: 30px;
}

.input-field input {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.input-field label {
  position: absolute;
  top: 22px;
  left: 10px;
  color: #888;
  transition: all 0.3s ease;
}

.input-field input:focus + label,
.input-field input:not(:placeholder-shown) + label {
  top: -12px;
  font-size: 14px;
  color: #00000;
}

.btn {
  background-color: #e30513;
  color: #f4f4f4;
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
  display: block;
  width: 100%;
  font-size: 16px;
}

/*.btn:hover {*/
/*  background-color: #e30513;*/
/*  color: #f4f4f4;*/
/*}*/