body {
    background: linear-gradient(-180deg, #ffffff, transparent 40%);
}

.container.dashboard-container {
    padding-top: 160px;
    padding-bottom: 200px;
    display: flex;
    justify-content: center;
}

form.auth {
    width: 680px;
    padding: 40px;
    background: white;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 40px;
}
form.auth .popup-form-wrapper {
    display: flex;
    flex-direction: column;
}
form.auth .button-red {
    font-family: 'eUkraine';
    background: #CF141F;
    color: white;
    padding: 18px;
    padding-left: 24px;
    display: flex;
    justify-content: flex-start;
    min-width: 292px;
}
form.auth .button-red::before {
    display: none;
}
form.auth .button-red::after {
    content: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzAiIGhlaWdodD0iMzAiIHZpZXdCb3g9IjAgMCAzMCAzMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHJlY3QgeD0iMzAiIHk9IjMwIiB3aWR0aD0iMzAiIGhlaWdodD0iMzAiIHJ4PSIxNSIgdHJhbnNmb3JtPSJyb3RhdGUoLTE4MCAzMCAzMCkiIGZpbGw9IndoaXRlIiBmaWxsLW9wYWNpdHk9IjAuMiIvPgo8cGF0aCBkPSJNOCAxNUwyMS41MzU2IDE1TTE1LjQ5ODUgMjJMMjIgMTVMMTUuNDk4NSA4IiBzdHJva2U9IndoaXRlIiBzdHJva2Utd2lkdGg9IjIiLz4KPC9zdmc+Cg==");
    display: inline-flex;
    position: absolute;
    right: 12px;
    top: 12px;
    align-items: center;
    justify-content: center;
}

.dashboard-content.error {
    width: 500px;
    background: #CF141F;
    height: 289px;
    border-radius: 24px;
    padding: 40px;
    color: white;
    box-shadow: inset #FFFFFFB2 0px 0px 64px 2px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.dashboard-content.error .dashboard-content__error-title {
    font-size: 40px;
    font-weight: 500;
}
.dashboard-content.error a {
    text-decoration: underline;
}

.dashboard-center {
    margin-top: 150px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dashboard-content__title {
    line-height: 120%;
    font-size: 64px;
    font-family: 'Oswald';
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 80px;
    margin-top: 80px;
}
.dashboard-content__title:nth-child(1) {
    margin-top: 0px;
}
.dashboard-items {
    display: grid;
    justify-content: center;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.dashboard-item {
    padding: 32px;
    background: white;
    border-radius: 24px;
    width: 432px;
    height: 248px;
}
.dashboard-item iframe {
    border: 0;
    width: -webkit-fill-available;
    height: -webkit-fill-available;
}

.dashboard-posts__wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.dashboard-post {
    width: 100%;
    padding: 32px;
    background: white;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.dashboard-post__date {
    font-size: 14px;
    opacity: .5;
}
.dashboard-post__title {
    font-weight: 500;
}