body {
    font-family: Arial, sans-serif;
    margin: 0;
    background-color: #f4f4f4;
    line-height: 1.6;
    color: #333;
}
.error {
    color: #D8000C;
    font-size: 20px;
    text-transform: uppercase;
    text-align: center;
}
.info {
    color: #4F8A10;
    font-size: 20px;
    text-transform: uppercase;
    text-align: center;
}

/* Общие адаптивные контейнеры */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
}

/* Адаптивные изображения */
img {
    max-width: 100%;
    height: auto;
}
/* Убираем закругления у всех элементов */
button, input, textarea, select, fieldset, legend, pre,
code, blockquote, img, a, div, section, article, header,
footer, nav, aside, figure, figcaption, table, th, td,
.nav-button {
    border-radius: 0 !important;
}

input[type="text"] {
    box-sizing: border-box;
}

/* Медиа-запросы для мобильных устройств */
@media (max-width: 768px) {
    body {
        font-size: 14px;
    }
    .error, .info {
        font-size: 16px;
    }
    .container {
        padding: 0 10px;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 13px;
    }
}