#frmInfaq {
    position: relative;
    font-family: var(--fn-alt);
    font-size: 0.85em;
    border: solid 2px var(--sea-green);
    display: flex;
    flex-direction: column;
    row-gap: 15px;
    width: 400px;
    margin: 0 auto;
    padding: 30px;
}

#frmInfaq label {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

#frmInfaq label span {
    font-size: 0.75em;
    font-weight: 600;
}

#frmInfaq label input {
    border: solid 1px var(--grey);
    width: 100%;
    flex-grow: 1;
}

#frmInfaq button {
    height: 44px;
    background-color: var(--red);
    font-size: 0.9em;
    font-weight: 700;
    color: white;
    transition: all 0.2s ease-in-out;
    margin-top: 25px;
}

#frmInfaq button:hover {
    background-color: var(--dark-red);
    transition: all 0.2s ease-in-out;
    cursor: pointer;
}

#frmInfaq .notice {
    font-size: 0.75em;
    color: var(--dark-grey);
    text-align: center;
}

#frmInfaq .logo {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 10px;
}

#frmInfaq .logo > img {
    display: block;
    height: 20px;
}

@media all and (max-width: 450px) {
    #frmInfaq {
        width: 100%;
    }
}