.req-wrapper {
    max-width: 900px;
    width: 94%;
    margin: 80px auto;
    display: flex;
    gap: 50px;
}

.req-info {
    flex: 1;
    padding-top: 5px;
}

.req-info h2 {
    font-family: 'Righteous', sans-serif;
    font-size: 30px;
    color: var(--black-color);
    margin-bottom: 14px;
}

.req-info p {
    font-size: 15px;
    opacity: .85;
    line-height: 1.7;
    color: var(--black-color);
    margin-bottom: 18px;
}

.req-points div {
    font-size: 14px;
    margin-bottom: 6px;
    color: var(--black-color);
    opacity: .9;
}

.req-form {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: center;
}

.req-form h3 {
    font-family: 'Righteous', sans-serif;
    font-size: 22px;
    color: var(--black-color);
    margin-bottom: 5px;
}

.req-type {
    width: 100%;
    max-width: 360px;
    display: flex;
    justify-content: center;
    gap: 14px;
}

.rdo {
    display: none;
}

.rdo-label {
    flex: 1;
    text-align: center;
    padding: 11px 0;
    border-radius: 7px;
    border: 2px solid var(--border-color);
    font-family: 'Righteous', sans-serif;
    cursor: pointer;
    font-size: 14px;
    color: var(--black-color);
    transition: .25s;
}

.rdo-label:hover {
    background: var(--border-color);
    color: var(--white-color);
}

.rdo:checked + .rdo-label {
    background: #ff0000;
    color: white;
    border-color: #ff0000;
}

.req-inp {
    width: 100%;
    max-width: 360px;
    padding: 12px;
    text-align: center;
    border-radius: 7px;
    border: 1px solid var(--border-color);
    background: var(--light-gray-color);
    color: var(--black-color);
    font-size: 14px;
}

.req-inp:focus {
    outline: 2px solid #ff0000;
}

.req-btn {
    width: 100%;
    max-width: 360px;
    padding: 12px;
    border-radius: 7px;
    background: #ff0000;
    color: white;
    font-family: 'Righteous', sans-serif;
    cursor: pointer;
    font-size: 15px;
    border: none;
    transition: .25s;
}

.req-btn:hover {
    background: #c40000;
}

.req-response {
    font-family: 'Righteous', sans-serif;
    color: var(--black-color);
    margin-top: 6px;
}

@media (max-width: 768px) {
    .req-wrapper {
        flex-direction: column;
        gap: 30px;
 
    }

    .rdo-label {
        width: 45%;
    }
}