body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Segoe UI", sans-serif;
  overflow-y: auto;
  background-color: #c09ca3;
  padding: 20px;
  box-sizing: border-box;
}

form {
  text-align: center;
  width: 100%;
}

h1 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 24px;
  color: #333;
}

.login-container {
  background: #fff;
  padding: 25px;
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(0, 174, 255, 0.2);
  width: 100%;
  max-width: 400px;
  text-align: center;
  box-sizing: border-box;
}

.logo {
  width: 80px;
  margin-bottom: 20px;
}

form input {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-size: 16px;
  box-sizing: border-box;
}

button {
  height: 45px;
  width: 100%;
  padding: 10px;
  background-color: #9c4a5c;
  color: white;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #7a3a4a;
}

/* 🔧 Mobile responsiveness */
@media screen and (max-width: 480px) {
  body {
    flex-direction: column;
    padding: 10px;
    align-items: stretch;
  }

  .login-container {
    padding: 20px;
    border-radius: 15px;
    box-shadow: none;
    max-width: 100%;
  }

  form input {
    font-size: 14px;
  }

  button {
    font-size: 14px;
    height: 40px;
  }

  .logo {
    width: 60px;
  }

  h1 {
    font-size: 20px;
  }
}
