* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #121417;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    width: 100%;
    display: flex;
    justify-content: center;
}

.card {
    width: 90%;
    max-width: 380px;
    background: #1f2630;
    border-radius: 25px;
    padding: 30px;
}

.star {
    width: 45px;
    height: 45px;
    background: #262f38;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

.star img {
    width: 18px;
    height: 18px;
}

h1 {
    color: white;
    margin-bottom: 15px;
}

p {
    color: grey;
    line-height: 1.7;
    font-size: 15px;
    margin-bottom: 25px;
}

.ratings {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.rating-btn {
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: #262f38;
    color: grey;
    cursor: pointer;
    transition: 0.3s;
}

.rating-btn:hover {
    background: #fc7614;
    color: white;
}

.rating-btn.active {
    background: #fc7614;
    color: white;
}

/* SUBMIT BUTTON */
.submit-btn {
    width: 100%;
    border: none;
    padding: 15px;
    border-radius: 30px;
    background: #fc7614;
    color: white;
    font-weight: bold;
    letter-spacing: 3px;
    cursor: pointer;
    transition: 0.3s;
}

.submit-btn:hover {
    background: white;
    color: #fc7614;
}

/* THANK YOU CARD */
.thank-you-card {
    color: white;
    display: none;
    margin-bottom: 10px;
    width: 90%;
    max-width: 380px;
    background: #1f2630;
    border-radius: 25px;
    padding: 30px;
    text-align: center;
}

.thank-you-card h2{
    color: white;
    margin-top: 10px;
    margin-bottom: 10px;
}

.thank-you-card img {
    width: 140px;
    margin-bottom: 15px;
}


.thank-you-card {
    transition: all 0.3s ease;
}
.thank-you-card .selected{
    display: inline-block;
    background: #262f38;
    color: #fc7614;
    padding: 8px 18px;
    border-radius: 20px;
    margin: 25px 0;
    font-size: 14px;
}