.top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: wrap;

    h1 {
        margin-block: 20px;
    }
}


.bottom {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-block: 30px;
}

[data-role="login-button"] {
    height: fit-content;
    padding: 20px 30px;
    white-space: nowrap;
    gap: 10px;
}


.main-content > .content {
    h4 {
        margin-block: 8px;
    }

    p {
        margin-block: 1em;
    }

    b {
        font-weight: bold;
    }
}

@media all and (max-width: 576px) {

    .top,
    .bottom {
        flex-direction: column;
        align-items: stretch;
    }
}
