@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap');

p,
h1,
h2,
h3,
span,
label {
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    padding: 0;
    background-color: #151515;
    display: flex;
    justify-content: center;
    width: 100vw;
    font-family: 'Roboto', sans-serif;
}

form {
    margin-top: 30px;
    box-sizing: border-box;
    padding: 30px;
    background-color: #252528;
}

form input {
    width: 400px;
    margin: 0;
    padding: 20px;
    background-color: #353535;
    border: none;
    outline: none;
    height: 45px;
    font-size: 17px;
    color: #fff;
    margin-top: 10px;
    margin-bottom: 20px;
}

form input[type="submit"] {
    width: 400px;
    margin: 0;
    padding: 0 20px;
    background-color: red;
    border: none;
    outline: none;
    height: 45px;
    font-size: 17px;
    color: #fff;
    margin-top: 10px;
    margin-bottom: 20px;
}

form textarea {
    resize: none;
    width: 400px;
    margin: 0;
    font-size: 17px;
    padding: 15px 20px;
    background-color: #353535;
    border: none;
    outline: none;
    height: 140px;
    color: #fff;
    margin-top: 10px;
    margin-bottom: 20px;
    font-family: 'Roboto', sans-serif;
}

label {
    width: 200px;
    margin: 0;
    padding: 0;
    display: flex;
    font-size: 15px;
    color: #8C8C8C;
}

.stars__wrapper {
    width: 100%;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stars__wrapper input {
    display: none;
}

.radio-input__star {
    width: unset;
    height: unset;
    padding: 0;
    margin: 0;
}

.star {
    display: inline-block;
    width: 50px;
    text-align: center;
    cursor: pointer;
}

.star svg {
    width: 35px;
    height: 35px;
    fill: white;
    stroke: #ccc;
    transform: scale(0.9);
    transition: transform 200ms ease-in-out;
}

.star svg path {
    transition: fill 100ms;
}

@media (max-width: 540px) {
    form input {
        width: 90vw;
    }
    
    form input[type="submit"] {
        width: 90vw;
    }
    
    form textarea {
        width: 90vw;
    }
}