input[type="text"], textarea {
    border-radius: 5px;
}

.review-create-head {
    font-family: 'Nunito', sans-serif;
    font-size: 21px;
    font-weight: 700;
    margin: 2rem 0;
    color: var(--text-gray);
}

.review-create-header p {
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    color: var(--light-gray);
}

.form-title {
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
    font-weight: 700;
}

.review-form-field input {
    height: 2.4rem;
    padding: .2rem .4rem;
    font-family: 'Nunito', sans-serif;
    font-size: 15px;
    color: var(--text-gray);
    background-color: #d9d9d976;
    border: none;
    outline: none;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 4px 24px;
}

.review-form-field input::placeholder {
    color: var(--light-gray);
}

.review-create-form p {
    margin: 1.2em 0;
}

.review-create-form input {
    width: 100%;
}

.uni-fac-dropdown {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.review-add-tof {
    font-family: 'Nunito', sans-serif;
    color: var(--light-gray);
}

.review-detail {
    margin-top: 4rem;
    margin-bottom: 8rem;
}

.alert-danger {
    color: red;
    font-weight: bold;
    font-size: large;
    font-family: 'Nunito', sans-serif;
}

#id_university,
#id_faculty,
#id_user_type {
    border: none;
    outline: none;
    width: 100%;
    height: 2.4rem;
    padding: .2rem .4rem;
    background: #d9d9d976;
    color: var(--light-gray);
    border-radius: 5px;
    font-family: 'Nunito', sans-serif;
    font-size: 15px;
    color: var(--light-gray);
}

.shadow,
#id_user_type {
    box-shadow: rgba(149, 157, 165, 0.2) 0px 4px 24px;
}

.textarea-field {
    width: 100%;
    height: 8rem;
    background: #d9d9d976;
    border: none;
    outline: none;
    padding: .2rem .4rem;
    font-family: 'Nunito', sans-serif;
    font-size: 15px;
    color: var(--text-gray);
    box-shadow: rgba(149, 157, 165, 0.2) 0px 4px 24px;
}

.textarea-field::placeholder {
    color: var(--light-gray);
}

#gen-eval {
    font-family: 'Nunito', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: var(--light-gray);
}

.submit-review {
    font-family: 'Nunito', sans-serif;
    font-size: 20px;
    font-weight: 700;
    padding: .5rem 4rem;
    border-radius: 40px;
    margin: 0 auto;
    color: var(--my-white);
    background-color: var(--primary-color);
}

.submit-btn {
    display: flex;
    padding: 1rem 0 4rem 0;
}

.rating {
    display: flex;
    direction: row-reverse;
    justify-content: center;
}

.rating-star {
    font-size: 2em;
    color: #ccc;
    cursor: pointer;
}

.rating-star.checked {
    color: #FFCA00;

}

.review-field {
    font-family: 'Nunito', sans-serif;
    color: var(--text-gray);
    white-space: pre-wrap;
    word-wrap: break-word;
    overflow-wrap: break-word;
    display: inline-block;
    vertical-align: top;
    overflow-x: auto;
    padding: 5px;
}

.review-field span {
    word-break: break-word;
}

.review-date {
    font-family: 'Nunito', sans-serif;
}

/* Review success page */
.review-sent {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 10rem;
    padding-bottom: 15rem;
    margin: 0 auto;
}

.review-sent h1 {
    font-family: 'Nunito', sans-serif;
    color: var(--primary-color);
}

.review-sent h2 {
    font-family: 'Nunito', sans-serif;
    color: var(--text-gray);
    font-weight: 400;
    margin-bottom: 2rem;
}


.review-sent a {
    font-family: 'Nunito', sans-serif;
    padding: .5rem 1.2rem;
    border-radius: 15px;
    color: var(--my-white);
    background-color: var(--primary-color);
}

@media screen and (max-width:992px) {
    .review-sent {
        padding-top: 6rem;
    }

    .review-sent h1 {
        font-size: 20px;
        padding-bottom: 1rem;
    }

    .review-sent h2 {
        font-size: 14px;
        width: 70%;
    }

    .review-sent a {

    }
}

@media screen and (min-width:992px) {
    .create-review {
        display: flex;
        gap: 8rem;
        align-items: center;
        justify-content: center;
        padding: 5rem 0;
    }

    .review-create-header {
        width: 50%;
    }

    .review-create-form {
        width: 50%;
        margin-top: 4rem;
    }

}
