@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

html,body{
  display: grid;
  height: 100%;
  place-items: center;
  text-align: center;
  background: #000;
}

.rating-widget{
    width: 400px;
    background: #111;
    padding: 20px 30px;
    border: 1px solid #444;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #fff;
}

input,.textarea{
    width: 100%;
    padding: 10px;
    border: none;
    outline: none;
    border-radius: 8px;
}

.star-rating {
    font-size: 24px;
    cursor: pointer;
}

.star {
    color: #ccc;
}

.star.active {
    color: gold;
}

#rating-message {
    margin-top: 10px;
    font-weight: bold;
}