.forms form {
    background-color: whitesmoke;
    padding: 15px 50px;
    text-align: start;
    justify-content: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.forms input,
textarea {
    border: 1px solid #ffc451;
    border-radius: 5px;
}

.lines {
    display: flex;
    flex-direction: row;
}

.naming {
    width: 300px;
    text-align: start;
}

.inp {
    text-align: start;
    display: flex;
    flex-direction: row;
}
.inp input {
    padding:5px  10px;
}
#captha {
    padding: 5px;
    border: 2px solid #545455;
    text-align: center;
    font-size: 20px;
    border-radius: 10px;
    background-color: #ffc451;
    color: white;
    letter-spacing: 5px;
}

@media (max-width:576px) {
    .lines {
        flex-direction: column;
    }

    .inp {
        flex-direction: column;
    }
}

@media (max-width:768px) {
    .naming {
        width: 300px;
    }
}

@media (min-width:768px) {
    .naming {
        width: 300px;
    }
}