.widget {
  border-radius: 8px;
  padding: 100px 88px;
  width: 345px;
  height: 280px;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.widget p {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: #2e2f42;
  margin: 0;
  text-align: center;
}

.widget .change-color {
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
  padding: 8px 16px;
  width: 148px;
  height: 40px;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  background: #4e75ff;
  color: #fff;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.widget .change-color:hover {
  background: #6c8cff;
}
