.form-page-body,
.thank-you-body,
.login-body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 1rem;
    background: var(--light);
}

.wrapper {
    background: var(--white);
    padding: 2rem;
    max-width: 576px;
    width: 100%;
    border-radius: .75rem;
    box-shadow: var(--shadow);
    text-align: center;
}

.wrapper h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.form-group {
    text-align: left;
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #333;
    font-size: 0.9rem;
}

.rating {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: .5rem;
    font-size: 2rem;
    color: var(--yellow);
    margin-bottom: 1rem;
}

.rating .star {
    cursor: pointer;
    transition: transform .2s ease;
}

.rating .star:hover {
    transform: scale(1.1);
}

.rating .star.active {
    opacity: 0;
    animation: animate .5s calc(var(--i) * .1s) ease-in-out forwards;
}

@keyframes animate {
    0% {
        opacity: 0;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

textarea {
    width: 100%;
    background: var(--light);
    padding: 1rem;
    border-radius: .5rem;
    border: none;
    outline: none;
    resize: none;
    margin-top: 1rem;
}

.feedback-tags {
    margin: 1.5rem 0;
    background-color: transparent;
    border: 1px solid var(--blue);
    border-radius: .5rem;
    padding: 1.25rem;
}

.feedback-tags h4 {
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
    color: #333;
}

.tags {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.tag {
    background-color: var(--white);
    border: 1px solid #ddd;
    color: #333;
    border-radius: 20px;
    padding: 0.5rem 1rem;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    text-align: center;
}

.tag:not(.selected):hover {
    background-color: var(--light);
}

.tag.selected {
    background-color: var(--blue);
    color: var(--white);
    border-color: var(--blue);
}

.popup-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--white);
    padding: 2.5rem;
    border-radius: .75rem;
    text-align: center;
    max-width: 400px;
    width: 90%;
    box-shadow: var(--shadow);
}

.company-logo {
    max-width: 150px;
    height: auto;
    margin-bottom: 1rem;
}

.checkmark-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
}

.popup-content h3 {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.divider {
    border: none;
    border-top: 1px solid #eee;
    margin: 1.5rem 0;
}