body {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background: linear-gradient(
    135deg,
    #fff8db,
    #ffc7ed
  ); /* Gradient Background */
  font-family: Arial, sans-serif;
  color: #7d8abc; /* Text Color */
}
.app-logo{
  display: flex;
  justify-content: center;
}
.container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
}

.logo {
  width: 250px;
  justify-content: center;
  align-items: center;
}
.login-box {
  background: #fff8db; /* Light Background */
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
  text-align: center;
  max-width: 400px;
  width: 100%;
}

.login-box h2 {
  margin: 0 0 20px;
  padding: 0;
  color: #304463; /* Accent Color */
  text-transform: uppercase;
}

.user-box {
  position: relative;
  margin-bottom: 30px;
}

.user-box input {
  width: 100%;
  padding: 10px 0;
  background: none;
  border: none;
  border-bottom: 2px solid #7d8abc; /* Text Color */
  outline: none;
  color: #304463; /* Accent Color */
  font-size: 16px;
  transition: 0.3s;
}

.user-box label {
  position: absolute;
  top: 0;
  left: 0;
  padding: 10px 0;
  font-size: 16px;
  color: #7d8abc; /* Text Color */
  pointer-events: none;
  transition: 0.3s;
}

.user-box input:focus ~ label,
.user-box input:valid ~ label {
  top: -20px;
  left: 0;
  color: #304463; /* Accent Color */
  font-size: 12px;
}

input[type="submit"]:hover {
  background-color: #7d8abc; /* Light blue-gray background on hover */
}

.submit:hover {
  background-color: #7d8abc; /* Light blue-gray background on hover */
}
input[type="submit"] {
  background: #304463; /* Accent Color */
  border: none;
  padding: 12px 20px;
  color: #fff8db; /* Light Background */
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

input[type="submit"]:hover {
  background: #7d8abc; /* Text Color */
}

@media (max-width: 768px) {
  .login-box {
    padding: 30px;
  }

  .user-box input {
    padding: 8px 0;
    font-size: 14px;
  }

  .user-box label {
    font-size: 14px;
  }

  button {
    padding: 10px 16px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .login-box {
    padding: 20px;
  }

  .user-box input {
    padding: 6px 0;
    font-size: 12px;
  }

  .user-box label {
    font-size: 12px;
  }

  button {
    padding: 8px 12px;
    font-size: 12px;
  }
}
