
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #e3f2fd, #fce4ec);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}


.wrapper {
  width: 100%;
  max-width: 420px;
  padding: 20px;
}
.card {
  background: #ffffff;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

h1, h2 {
  text-align: center;
  color: #333;
}

.subtitle {
  text-align: center;
  color: #777;
  margin-bottom: 15px;
  font-size: 14px;
}


form {
  display: flex;
  flex-direction: column;
}


input {
  padding: 10px;
  margin: 8px 0 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  transition: 0.3s;
}

input:focus {
  border-color: #64b5f6;
  outline: none;
}


button {
  padding: 10px;
  border: none;
  border-radius: 8px;
  background-color: #64b5f6;
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  background-color: #42a5f5;
}


.info-box {
  background: #f5f5f5;
  padding: 10px;
  border-radius: 8px;
  margin-top: 10px;
  text-align: center;
  color: #444;
}


.quotes-box p {
  text-align: center;
  margin-top: 5px;
  font-size: 14px;
  color: #555;
}


.reset-btn {
  margin-top: 15px;
  background-color: #ef5350;
}

.reset-btn:hover {
  background-color: #e53935;
}

.hidden {
  display: none;
}