.newsSec {
    padding-top: 60px;
    padding-bottom: 80px;
    width: 100%;
}

.news {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: calc(100% - 60px);
    max-width: 1020px;
    border-radius: 15px;
    background-color: #000000;
    padding: 30px;
    box-shadow:
        0 0 5px #fff,
        0 0 5px #fff,
        0 0 5px #fff,
        0 0 5px #0F8AFD,
        0 0 32px #0F8AFD,
        0 0 32px #0F8AFD,
        0 0 12px #0F8AFD,
        0 0 15px #0F8AFD;
}

.news div {
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 5px;
}

.news input {
    width: 100%;
    height: 30px;
    border-radius: 15px;
    padding-left: 15px;
    margin-top: 20px;
    border: none;
    box-shadow:
        0 0 2px #fff,
        0 0 2px #fff,
        0 0 2px #fff,
        0 0 8px var(--default),
        0 0 8px var(--default),
        0 0 8px var(--default),
        0 0 8px var(--default),
        0 0 8px var(--default);
}

.news button {
    width: 120px;
    color: #000000;
    margin: 0;
}

.news button:hover {
    color: #ffffff;
}

@media screen and (max-width: 1100px) {
    .news {
        max-width: calc(100% - 110px);
        margin-left: 25px;
    }
}

@media screen and (max-width: 800px) {
    .news {
        margin: 0 50px;
        flex-direction: column;
        line-height: 1.3;
        padding-top: 10px;
    }

    .news div {
        margin-bottom: 30px;
        background-color: #0F8AFD;
    }

    .news h1 {
        width: 100%;
        text-align: center;
    }
}