* {
  font-family: roboto;
}
body {
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(to left, #084586, #709bdc);
  min-height: 100vh;
}
.card {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 500px;
  height: 300px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.3);
  box-shadow: 0px 0px 30px rgba(42, 42, 42, 0.45);
}


input {
  margin: 20px;
  width: 300px;
  height: 50px;
  font-size: 16px;
  border: none;
  border-radius: 15px;
  display: block;
}
input::placeholder {
  position: relative;
  left: 10px;
  font-weight: 400;
  color: #bdbdbd;
}
input:hover {
  transform: translateY(-1px);
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.2);
}
button {
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  top: 15px;
  left: 130px;
  width: 70px;
  height: 35px;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  background: #4c7dbe;
  color: #ffffff;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
}
button:hover {
  transform: translateY(-1px);
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.2);
}
button:active {
  transform: translateY(1px);
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
}
