*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html, body{
    background: #fff1ee;
}

.container-inner{
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, 0px);
    background-color: white;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 3px solid transparent;
    border-image: linear-gradient(to top, #9c5b9d, #f0ca70);
    border-image-slice: 1;
}
.headline-h1{
    width: 100%;
    text-align: center;
    margin-top: 75px;
    font-size: 30px;
    text-transform: uppercase;
    letter-spacing: 0.5rem;
}
.container-inner .headline-h2{
    margin-bottom: 20px;
}
.container-inner .thanks{
    font-size: 25px;
    font-weight: 500;
}
.container-inner .star-widget{
    user-select: none;
}
.container-inner .star-widget input{
    display: none;
}
.star-widget label{
    font-size: 40px;
    color: #444;
    padding: 15px;
    float: right;
    transition: all 0.2s ease;
}
.star-widget input:not(:checked) ~ label:hover,
.star-widget input:not(:checked) ~ label:hover ~ label{
    color: #fd4;
}
input:checked ~ label{
    color: #fd4;
}
/*input#rate-5:checked ~ label{
    color: #fe7;
    text-shadow: 0 0 20px #952;
}*/
.container-inner form{
    width: 100%;
    margin-top: 20px;
}
.star-widget header{
    width: 100%;
    height: fit-content;
    font-size: 25px;
    color: #fe7;
    font-weight: 500;
    margin: 5px 0 20px 0;
    text-align: center;
    transition: all 0.2s ease;
}
form span label{
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 500;
}
form .textarea{
    height: 100px;
    width: 100%;
    overflow: hidden;
    margin-top: 15px;
}
form .textarea textarea{
    height: 100%;
    width: 100%;
    outline: none;
    padding: 10px;
    font-size: 17px;
    resize: none;
}
form .medium{
    font-size: 18px;
}
form .good{
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}
form .good a{
    text-decoration: none;
}
form .good a:hover{
    text-decoration: underline;
}
form .btn{
    height: 45px;
    width: 100%;
    margin: 15px 0;
}
form .btn button{
    height: 100%;
    width: 100%;
    outline: none;
    background-color: #b35bb4;
    color: white;
    font-size: 17px;
    font-weight: 500;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}
form .btn button:hover{
    background: #b536b6;
}

#back-button{
    padding: 7px 20px;
    outline: none;
    background-color: #b35bb4;
    color: white;
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

#back-button:hover{
    background: #b536b6;
}

.back-button{
    width: 100%;
}

.hidden {
    display: none;
}

@media (max-width: 875px) {
    .container-inner {
        padding: 15px;
        width: 75%;
    }
}

@media (max-width: 620px) {
    .container-inner {
        padding: 15px;
        width: 90%;
    }
    .headline-h1 {
        margin-top: 40px;
        font-size: 22px;
    }
}