body {
    --primary-color: #673AB7;
}


.wrapper {
    display: flex;
    justify-content: center;
}

.vote__wrapper,
.review__wrapper {
    display: flex;
    flex-direction: column;
    width: 85%;
}

.landing__header {
    text-align: center;
    margin-top: 2rem;
    font-weight: 600;
}

.review__url {
    margin: auto;
    margin-top: 1rem;
    /* margin-bottom: 1rem; */
}

.review__url a {
    font-weight: 500;
    font-family: system-ui, sans-serif;
}

.vote__form,
.review__form {
    margin: auto;
    margin-top: 1rem;
    font-family: system-ui, sans-serif;
    font-weight: 500;
    width: 100%;
    margin-bottom: 2rem;
}

.vote__form form>label,
.review__form form>label,
.landing_text {
    font-size: large;
    /* font-weight: 600; */
    /* display: flex;
    justify-content: center; */
    /* text-align: center; */
    margin-top: 1rem;
    margin-bottom: 1rem;
}


.review__form textarea {
    display: block;
    margin: auto;
    font-weight: 400;
}

.vote__form ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 1rem;
}

.vote__form li {
    width: max-content;
}

.vote__form li+li {
    margin-top: 1rem;
}

.vote__form input[type="radio"] {
    display: none;
}

.vote__form ul li>label {
    display: inline-block;
    text-align: center;
    align-content: center;
    width: 12rem;
    height: 3rem;
    cursor: pointer;
    padding: 0px 15px;
    border: 1px solid #999;
    border-radius: 10px;
    user-select: none;
}

.vote__form label:has(input[type="radio"]:checked) {
    background: var(--primary-color);
    color: white;

}

.vote__form input[type="submit"],
.review__form input[type="submit"],
.login__form input[type="submit"] {
    height: 2.5rem;
    display: flex;
    margin: auto;
    margin-top: 2rem;
    width: 7rem;
    justify-content: center;
    background-color: #673ab71f;
    border: 1px solid #999;
    color: #350090;
}

.link_button {
    height: 2.5rem;
    line-height: 2.5rem;
    display: flex;
    margin: auto;
    width: 20rem;
    justify-content: center;
    background-color: #673ab71f;
    border: 1px solid #999;
    color: #350090;
    margin-bottom: 0.8rem;
    text-decoration: none;
}

/* Login form */

.login__wrapper,
.logout__wrapper {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logout__wrapper {
    flex-direction: column;

}

.logout__header {
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
}

.logout__link {
    font-size: 1.4rem;
}

.logout__link a {
    text-decoration: none;
}


.logout__link a:visited {
    color: var(--primary-color);
}

.login__form {
    width: 300px;
    margin: 0 auto;
    padding: 20px;
    border: 1px solid var(--primary-color);
    border-radius: 10px;
}

.login__header {
    text-align: center;
    font-weight: 600;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.login__field__wrap {
    margin-top: 0.5rem;
}

.login__field {
    width: 100%;
    height: 2rem;
    border: 1px solid lightgrey;
    border-radius: 5px;

    padding-left: 1rem;
    padding-right: 1rem;
}

.login__field:focus {
    border: 1px solid #7F7F7F;
    outline: none;
}

.login__form input[type="submit"] {
    margin-top: 1rem;
    background-color: var(--primary-color);
    color: white;
    border-radius: 5px;
    transition: opacity 0.3s ease;
}

.login__form input[type="submit"]:hover {
    cursor: pointer;
    opacity: 0.9;

}

.login__error {
    margin-top: 1rem;
    color: red;
    text-align: center;
}

.source_select__form {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.source_select__form input[type="radio"] {
    appearance: none;
}

.source_select__form label {
    height: 2.5rem;
    line-height: 2.5rem;
    display: flex;
    margin: auto;
    width: 15rem;
    justify-content: center;
    background-color: #673ab71f;
    border: 1px solid #999;
    color: #350090;
    margin-bottom: 0.8rem;
    text-decoration: none;
    font-weight: 600;
}