/* Feedback Form*/
#feedback-form{
    position: fixed;
    z-index: 5;
    top: 50%;        /* Moves the top edge to the vertical center of the screen */
    left: 50%;       /* Moves the left edge to the horizontal center of the screen */
    transform: translate(-50%, -50%); /* Moves the element back up and left by half of its own height and width */
}
.form {
    position: relative;
    padding: 40px;
    border-radius: 20px;

    border: 1px solid #ffffff80;
    background: #00000080;
    backdrop-filter: blur(10px);
}
.form__title{
    margin-top: 0;
    margin-bottom: 30px;
    font-size: 2rem;
    color: var(--text-secondary-color);
}
.form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form__group {
    margin-bottom: 20px;
}
.form__group label {
    display: block;
    color: var(--text-secondary-color);
    margin-bottom: 8px;
    font-size: 0.95rem;
    font-weight: 500;
}

.form__group input,
.form__group textarea
{
    width: 100%;
    padding: 15px;
    border-radius: 10px;
    border: 1px solid #ffffff33;
    background: #ffffff33;
    color: var(--text-secondary-color);
    font-size: 1rem;
    transition: all 0.3s ease;
}
/*Subtle shadow and darker color on focus*/
.form__group input:focus,
.form__group textarea:focus,
.form__group select:focus {
    outline: none;
    border-color: var(--text-secondary-color);
    box-shadow: 0 0 0 3px var(--text-secondary-color);
    background: #ffffff26;
}

.form__group input::placeholder,
.form__group textarea::placeholder {
    color: #bfbebe;
}

.form__group textarea {
    resize: vertical;
    min-height: 120px;
}
/*Submit button*/
.form__submit {
    width: 100%;
    padding: 18px;
    margin-top: 10px;
    border: none;
    border-radius: 12px;
    background: var(--text-secondary-color);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.form__submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px var(--text-secondary-color);
}

.form__submit:active {
    transform: translateY(0);
}
.form__error{
    margin: 10px 0 0 0;
    text-align: center;
    color: #9C1A1C;
}
@media (max-width: 650px){
    .form__row {
    grid-template-columns: 1fr;
    }
}