body {
  background: #eaf6fb;
  font-family: 'Segoe UI', Arial, sans-serif;
  color: #000;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 420px;
  margin: 40px auto;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  padding: 32px 28px 28px 28px;
  border-top: 8px solid #4f81c0;
}

h1 {
  color: #4f81c0;
  text-align: center;
  margin-bottom: 24px;
  font-size: 2.2rem;
  letter-spacing: 1px;
}

form label {
  display: block;
  margin-bottom: 18px;
  font-weight: 600;
  color: #222;
}

form input {
  width: 100%;
  padding: 10px 12px;
  margin-top: 7px;
  font-size: 1.1rem;
  border: 2px solid #b3d4fc;
  border-radius: 7px;
  background: #f6fbff;
  color: #222;
  outline: none;
  transition: border-color 0.2s;
}

form input:focus {
  border-color: #4f81c0;
}

button {
  width: 100%;
  background: #4f81c0;
  color: #fff;
  border: none;
  font-size: 1.2rem;
  padding: 12px 0;
  margin-top: 10px;
  border-radius: 7px;
  cursor: pointer;
  font-weight: bold;
  letter-spacing: 1px;
  box-shadow: 0 2px 8px rgba(79,129,192,0.18);
  transition: background 0.2s;
}

button:hover {
  background: #155f91;
}

.results {
  margin-top: 28px;
  background: #f6fbff;
  border-radius: 10px;
  padding: 20px 16px;
  box-shadow: 0 2px 8px rgba(79,129,192,0.08);
}

.result-block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.result-label {
  font-size: 1.1rem;
  color: #4f81c0;
  font-weight: 600;
}

.result-value {
  font-size: 1.7rem;
  font-weight: bold;
  color: #000;
  letter-spacing: 1px;
  font-family: 'Digital-7', 'Segoe UI', Arial, sans-serif;
}

.motivation {
  margin-top: 30px;
  background: #4f81c0;
  color: #fff;
  border-radius: 8px;
  padding: 20px 12px;
  text-align: center;
  font-size: 1.5rem;
  font-weight: bold;
  box-shadow: 0 2px 8px rgba(79,129,192,0.12);
  letter-spacing: 1px;
  min-height: 60px;
  transition: background 0.3s;
}

@media (max-width: 520px) {
  .container {
    padding: 16px 6px 16px 6px;
  }
  .motivation {
    font-size: 1.1rem;
  }
}
